diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-09-24 12:14:43 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-09-24 16:00:57 +0200 |
commit | 9364369c1f346b9b328274f495267488bfe30b63 (patch) | |
tree | 6c7ee33dcdac9f77b45280f364f8940a175a26de /tests/pragmas/treorder.nim | |
parent | c38a608c9099e987a8be0149b5190a4fc2d5fb33 (diff) | |
download | Nim-9364369c1f346b9b328274f495267488bfe30b63.tar.gz |
make tests green again
Diffstat (limited to 'tests/pragmas/treorder.nim')
-rw-r--r-- | tests/pragmas/treorder.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/pragmas/treorder.nim b/tests/pragmas/treorder.nim index 659a6f644..09a98ef6a 100644 --- a/tests/pragmas/treorder.nim +++ b/tests/pragmas/treorder.nim @@ -14,10 +14,10 @@ echo callWithFoo(0) echo(CA+CD) echo useTypes(TA(x:TB(x:1)), 2) second(0) - + template callWithFoo(arg: untyped): untyped = foo(arg) - + proc first(i: int): void proc second(i: int): void = @@ -35,7 +35,7 @@ type type TCyclicA = ref object x: TDoubleCyclic - + type TCyclicB = ref object x: TDoubleCyclic |