summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test.test7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/test.test b/test/test.test
index 149f1a6..58be29b 100644
--- a/test/test.test
+++ b/test/test.test
@@ -55,6 +55,7 @@ const inherited_type: type[test_type] = {
}
const object: inherited_type = inherited_type()
-//object.test_field = "hey"
-//object.test_function() => print($)
-//object.nested.another_function(add = 2)
+object.test_field = "hey"
+object.test_function() => print($)
+object.nested.another_field = 5
+object.nested.another_function(add = 2) => print($)