reflect: add stub for StructOf()

Этот коммит содержится в:
Damian Gryski 2023-03-10 21:05:09 -08:00 коммит произвёл Ayke
родитель 3b2763896f
коммит 04412cba0e

Просмотреть файл

@ -1071,3 +1071,7 @@ func SliceOf(t Type) Type {
func ArrayOf(n int, t Type) Type { func ArrayOf(n int, t Type) Type {
panic("unimplemented: reflect.ArrayOf()") panic("unimplemented: reflect.ArrayOf()")
} }
func StructOf([]StructField) Type {
panic("unimplemented: reflect.StructOf()")
}