summary refs log tree commit diff stats
path: root/tests/accept/run/tsidee2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tsidee2.nim')
-rwxr-xr-xtests/accept/run/tsidee2.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/accept/run/tsidee2.nim b/tests/accept/run/tsidee2.nim
deleted file mode 100755
index 2eaec01d7..000000000
--- a/tests/accept/run/tsidee2.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-
-var
-  global: int
-
-proc dontcare(x: int): int = return x
-
-proc SideEffectLyer(x, y: int): int {.noSideEffect.} = 
-  return x + y + dontcare(x)
-  
-echo SideEffectLyer(1, 3) #OUT 5
-