reflect: add stub for StructOf()

This commit is contained in:
Damian Gryski
2023-03-10 21:05:09 -08:00
committed by Ayke
parent 3b2763896f
commit 04412cba0e
+4
View File
@@ -1071,3 +1071,7 @@ func SliceOf(t Type) Type {
func ArrayOf(n int, t Type) Type {
panic("unimplemented: reflect.ArrayOf()")
}
func StructOf([]StructField) Type {
panic("unimplemented: reflect.StructOf()")
}