summary refs log tree commit diff stats
path: root/tests/run/tdumptree.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tdumptree.nim')
-rw-r--r--tests/run/tdumptree.nim27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/run/tdumptree.nim b/tests/run/tdumptree.nim
deleted file mode 100644
index 5299a94e3..000000000
--- a/tests/run/tdumptree.nim
+++ /dev/null
@@ -1,27 +0,0 @@
-discard """
-disabled: true
-output: '''StmtList
-  VarSection
-    IdentDefs
-      Ident !"x"
-      nil
-      Call
-        DotExpr
-          Ident !"foo"
-          Ident !"create"
-        IntLit 56'''
-"""
-
-# disabled; can't work as the output is done by the compiler
-
-import macros
-
-#emit("type\n  TFoo = object\n    bar: int")
-
-#var f: TFoo
-#f.bar = 5
-#echo(f.bar)
-
-dumpTree:
-  var x = foo.create(56)
-