diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-16 00:21:02 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-16 00:21:02 +0200 |
| commit | 9ca1d0c763e1c506ae7b43d50db225914b709397 (patch) | |
| tree | ff80aa07a1b1ee6515926ec5d078bc44866a46aa /tests/trait_expand | |
| parent | 7eaa051d4dcc3048c46f302997fd2175a983ac0e (diff) | |
| download | ek-9ca1d0c763e1c506ae7b43d50db225914b709397.tar.gz ek-9ca1d0c763e1c506ae7b43d50db225914b709397.zip | |
more strict trait checking
Diffstat (limited to 'tests/trait_expand')
| -rw-r--r-- | tests/trait_expand/trait_expand.ek | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/trait_expand/trait_expand.ek b/tests/trait_expand/trait_expand.ek index c5f0f1c..d7aa288 100644 --- a/tests/trait_expand/trait_expand.ek +++ b/tests/trait_expand/trait_expand.ek @@ -1,15 +1,15 @@ typedef ptr {} -define b[] { - a![]; +define b { + a!; } -define a[] { +define a { a(*a a); } typedef c { - b![]; + b!; a(*c) {} } |
