aboutsummaryrefslogtreecommitdiff
path: root/tests/trait_multiple_expand/trait_multiple_expand.ek
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-01-16 00:21:02 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-01-16 00:21:02 +0200
commit9ca1d0c763e1c506ae7b43d50db225914b709397 (patch)
treeff80aa07a1b1ee6515926ec5d078bc44866a46aa /tests/trait_multiple_expand/trait_multiple_expand.ek
parent7eaa051d4dcc3048c46f302997fd2175a983ac0e (diff)
downloadek-9ca1d0c763e1c506ae7b43d50db225914b709397.tar.gz
ek-9ca1d0c763e1c506ae7b43d50db225914b709397.zip
more strict trait checking
Diffstat (limited to 'tests/trait_multiple_expand/trait_multiple_expand.ek')
-rw-r--r--tests/trait_multiple_expand/trait_multiple_expand.ek14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/trait_multiple_expand/trait_multiple_expand.ek b/tests/trait_multiple_expand/trait_multiple_expand.ek
index 04e2b82..3444305 100644
--- a/tests/trait_multiple_expand/trait_multiple_expand.ek
+++ b/tests/trait_multiple_expand/trait_multiple_expand.ek
@@ -1,21 +1,21 @@
typedef ptr {}
-define b[] {
- c![];
- a![];
+define b {
+ c!;
+ a!;
}
-define a[] {
- c![];
+define a {
+ c!;
a(*a a);
}
-define c[] {
+define c {
c(*c c);
}
typedef d {
- b![];
+ b!;
c(*d d) {}
}