aboutsummaryrefslogtreecommitdiff
path: root/test/use.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-06-17 17:33:32 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-06-17 17:33:32 -0400
commit7e261bea9b303ff2cc24464c5400100f72badfaf (patch)
treea2cb06a4560e698b7cd0ea7128b180cfe3a84e9c /test/use.tm
parent1621968fc82f17708c1d5b6f5bd65ba2244269a3 (diff)
Fix 'use' test to use 'import' instead
Diffstat (limited to 'test/use.tm')
-rw-r--r--test/use.tm9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/use.tm b/test/use.tm
deleted file mode 100644
index 95ab3c7e..00000000
--- a/test/use.tm
+++ /dev/null
@@ -1,9 +0,0 @@
-imported := use ./use_import
-
-func asdf()->imported.ImportedType:
- return imported.get_value()
-
-func main():
- >> [:imported.ImportedType]
- >> asdf()
- = ImportedType(name="Hello")