diff options
Diffstat (limited to 'tests/caas/main_dirty.nim')
-rw-r--r-- | tests/caas/main_dirty.nim | 14 |
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) - |