Skip to content

Commit 26c11bc

Browse files
committed
re3
1 parent eae2f49 commit 26c11bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/reflect/type.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,6 @@ type Type interface {
225225
// It panics if i is not in the range [0, NumOut()).
226226
Out(i int) Type
227227

228-
common() *abi.Type
229-
uncommon() *uncommonType
230-
231228
// OverflowComplex reports whether the complex128 x cannot be represented by type t.
232229
// It panics if t's Kind is not Complex64 or Complex128.
233230
OverflowComplex(x complex128) bool
@@ -243,6 +240,9 @@ type Type interface {
243240
// OverflowUint reports whether the uint64 x cannot be represented by type t.
244241
// It panics if t's Kind is not Uint, Uintptr, Uint8, Uint16, Uint32, or Uint64.
245242
OverflowUint(x uint64) bool
243+
244+
common() *abi.Type
245+
uncommon() *uncommonType
246246
}
247247

248248
// BUG(rsc): FieldByName and related functions consider struct field names to be equal

0 commit comments

Comments
 (0)