diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-09-22 23:13:24 +0200 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-09-22 23:13:24 +0200 |
commit | de35d2d26a58b9979dcd274f2c1969e0504bc2a9 (patch) | |
tree | 051606ef28a69e176e3d8522f53dc8a1e97764d6 /test | |
parent | cdfc214a9f961ac9a9a6ed8c419bd2b4d7edc9bc (diff) |
nested namespace access @.@
Diffstat (limited to 'test')
-rw-r--r-- | test/test.test | 7 |
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($) |