diff options
Diffstat (limited to 'tests/trait_multiple_expand.ek')
| -rw-r--r-- | tests/trait_multiple_expand.ek | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/trait_multiple_expand.ek b/tests/trait_multiple_expand.ek new file mode 100644 index 0000000..285a6ea --- /dev/null +++ b/tests/trait_multiple_expand.ek @@ -0,0 +1,18 @@ +define b[] { + c![]; + a![]; +} + +define a[] { + c![]; + a(*a a); +} + +define c[] { + c(*c c); +} + +typedef d { + b![]; + c(*d d) {} +} |
