aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/orderedmap.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/typeparam/orderedmap.go')
-rw-r--r--test/typeparam/orderedmap.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/typeparam/orderedmap.go b/test/typeparam/orderedmap.go
index 6a895bd396..1f077333b8 100644
--- a/test/typeparam/orderedmap.go
+++ b/test/typeparam/orderedmap.go
@@ -15,10 +15,10 @@ import (
)
type Ordered interface {
- ~int | ~int8 | ~int16 | ~int32 | ~int64 |
- ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
- ~float32 | ~float64 |
- ~string
+ ~int | ~int8 | ~int16 | ~int32 | ~int64 |
+ ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
+ ~float32 | ~float64 |
+ ~string
}
// _Map is an ordered map.
@@ -230,7 +230,7 @@ func _Ranger[Elem any]() (*_Sender[Elem], *_Receiver[Elem]) {
values: c,
done: d,
}
- r := &_Receiver[Elem] {
+ r := &_Receiver[Elem]{
values: c,
done: d,
}