summaryrefslogtreecommitdiff
path: root/src/lib/json/struct_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/json/struct_test.go')
-rw-r--r--src/lib/json/struct_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/json/struct_test.go b/src/lib/json/struct_test.go
index d0c15c297..88d9e9ec4 100644
--- a/src/lib/json/struct_test.go
+++ b/src/lib/json/struct_test.go
@@ -46,7 +46,7 @@ func _Check(t *testing.T, ok bool, name string, v interface{}) {
}
}
-export func TestUnmarshal(t *testing.T) {
+func TestUnmarshal(t *testing.T) {
var m _MyStruct;
m.f = true;
ok, errtok := Unmarshal(_Encoded, &m);