diff options
Diffstat (limited to 'tests/ccgbugs/tcgbug.nim')
-rw-r--r-- | tests/ccgbugs/tcgbug.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ccgbugs/tcgbug.nim b/tests/ccgbugs/tcgbug.nim index 92e7b3a66..1c6466c87 100644 --- a/tests/ccgbugs/tcgbug.nim +++ b/tests/ccgbugs/tcgbug.nim @@ -14,7 +14,7 @@ proc p(a: PObj) = proc q(a: var PObj) = a.p() -var +var a: PObj new(a) q(a) |