summaryrefslogtreecommitdiff
path: root/tests/test_method
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-03-07 04:53:40 -0500
committerKyle Gunger <kgunger12@gmail.com>2024-03-07 04:53:40 -0500
commit234c99226ca1699832d411d0c326120607620ece (patch)
tree441a02b058960ad3a58edb9d699660a0413e370f /tests/test_method
parent567eed5e49a927a31b2692c586da1246519fb1a9 (diff)
fix a couple issues with dot eval
Diffstat (limited to 'tests/test_method')
-rw-r--r--tests/test_method23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/test_method b/tests/test_method
deleted file mode 100644
index 0f79400..0000000
--- a/tests/test_method
+++ /dev/null
@@ -1,23 +0,0 @@
-struct Vector {
- ~void data,
- int
- size,
- count,
- _el_sz
-}
-
-/; method Vector
-
- /; init
- self.size = 69
- ;/
-;/
-
-/; main [int]
-
- Vector a
- a.init()
-
- return a.size
-
-;/