runtime: Func, Method, Imethod

This commit is contained in:
xushiwei
2024-05-25 22:52:48 +08:00
parent f06899303c
commit afe20ffe92
7 changed files with 115 additions and 7 deletions

9
_demo/interf/foo/foo.go Normal file
View File

@@ -0,0 +1,9 @@
package foo
func Bar() any {
return struct{ V int }{1}
}
func F() any {
return struct{ v int }{1}
}