Skip to content

Commit cca32e6

Browse files
shane-twdeadprogram
authored andcommitted
reflect: stub FuncOf()
1 parent 174d492 commit cca32e6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/reflect/type.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,6 +1294,10 @@ func MapOf(key, value Type) Type {
12941294
panic("unimplemented: reflect.MapOf()")
12951295
}
12961296

1297+
func FuncOf(in, out []Type, variadic bool) Type {
1298+
panic("unimplemented: reflect.FuncOf()")
1299+
}
1300+
12971301
const maxVarintLen32 = 5
12981302

12991303
// encoding/binary.Uvarint, specialized for uint32

0 commit comments

Comments
 (0)