summary refs log tree commit diff stats
path: root/tests/run/temit.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/temit.nim')
-rw-r--r--tests/run/temit.nim20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/run/temit.nim b/tests/run/temit.nim
deleted file mode 100644
index ff8df0585..000000000
--- a/tests/run/temit.nim
+++ /dev/null
@@ -1,20 +0,0 @@
-discard """
-  file: "temit.nim"
-  output: "509"
-"""
-# Test the new ``emit`` pragma: 
-
-{.emit: """
-static int cvariable = 420;
-
-""".}
-
-proc embedsC() = 
-  var nimrodVar = 89
-  {.emit: """printf("%d\n", cvariable + (int)`nimrodVar`);""".}
-
-embedsC()
-
-
-
-