aboutsummaryrefslogtreecommitdiff
path: root/tests/ptr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ptr')
-rw-r--r--tests/ptr/ptr.ek6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ptr/ptr.ek b/tests/ptr/ptr.ek
index 86f413c..3e74917 100644
--- a/tests/ptr/ptr.ek
+++ b/tests/ptr/ptr.ek
@@ -1,14 +1,14 @@
typedef bool {}
typedef i27 {
- cmp![];
+ cmp!;
eq(i27 a, i27 b => bool) {
return a == b;
}
}
typedef ptr {
- cmp![];
+ cmp!;
eq(ptr a, ptr b => bool) {
return a == b;
}
@@ -16,7 +16,7 @@ typedef ptr {
typedef test[cmp T] {}
-define cmp[] {
+define cmp {
eq(cmp, cmp => bool);
}