summary refs log tree commit diff stats
path: root/tests/run/toprprec.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/toprprec.nim')
-rwxr-xr-xtests/run/toprprec.nim18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/run/toprprec.nim b/tests/run/toprprec.nim
deleted file mode 100755
index 17ec91fda..000000000
--- a/tests/run/toprprec.nim
+++ /dev/null
@@ -1,18 +0,0 @@
-discard """
-  file: "toprprec.nim"
-  output: "done"
-"""
-# Test operator precedence: 
-
-assert 3+5*5-2 == 28- -26-28
-
-proc `^-` (x, y: int): int =  
-  # now right-associative!
-  result = x - y
-  
-assert 34 ^- 6 ^- 2 == 30
-assert 34 - 6 - 2 == 26
-echo "done"
-
-
-