reflect: add stub reflect package

This is necessary to compile fmt. However, it cannot link yet.
This commit is contained in:
Ayke van Laethem
2018-10-23 15:39:53 +02:00
parent 6c6a43310a
commit 0b8beb77c1
3 changed files with 219 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
package reflect
func Swapper(slice interface{}) func(i, j int) {
panic("unimplemented: reflect.Swapper")
}