aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/test2.cff
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/test2.cff')
-rw-r--r--bootstrap/test2.cff8
1 files changed, 5 insertions, 3 deletions
diff --git a/bootstrap/test2.cff b/bootstrap/test2.cff
index 3532f4a..356312c 100644
--- a/bootstrap/test2.cff
+++ b/bootstrap/test2.cff
@@ -8,12 +8,14 @@ struct Node<T> {
}
}
+def X = 7 + 2;
+
struct Bit<T> {
- fn neg(x T) T { return ~x; }
+ fn neg(x T) T { return ~x + X; }
+ !fn neg(x T) T { return ~x + Y; }
}
-def X = 7 + 2,
- Y = 3.3;
+def Y = 3.3;
extern fn main() void {
let n Node<int> = {#null, 0};