aboutsummaryrefslogtreecommitdiff
path: root/tests/trait_expand.ek
diff options
context:
space:
mode:
Diffstat (limited to 'tests/trait_expand.ek')
-rw-r--r--tests/trait_expand.ek21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/trait_expand.ek b/tests/trait_expand.ek
deleted file mode 100644
index c5f0f1c..0000000
--- a/tests/trait_expand.ek
+++ /dev/null
@@ -1,21 +0,0 @@
-typedef ptr {}
-
-define b[] {
- a![];
-}
-
-define a[] {
- a(*a a);
-}
-
-typedef c {
- b![];
-
- a(*c) {}
-}
-
-main()
-{
- c c = c!{};
- c.a();
-}