summary refs log tree commit diff stats
path: root/tests/caas/main_dirty.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/caas/main_dirty.nim')
-rw-r--r--tests/caas/main_dirty.nim14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/caas/main_dirty.nim b/tests/caas/main_dirty.nim
deleted file mode 100644
index 95fb6c624..000000000
--- a/tests/caas/main_dirty.nim
+++ /dev/null
@@ -1,14 +0,0 @@
-import imported, strutils
-
-type
-  TFoo = object
-    x: int
-    y: string
-
-proc main =
-  var t1 = "text"
-  var t2 = t1.toUpper
-  var foo = TFoo(x: 10, y: "test")
-  foo.
-  echo(t1 +++ t2)
-