diff options
author | ReneSac <reneduani@yahoo.com.br> | 2014-02-03 01:12:27 -0200 |
---|---|---|
committer | ReneSac <reneduani@yahoo.com.br> | 2014-02-03 01:12:27 -0200 |
commit | 5bd3ec0bfb77a1a7342a183876e45c333b804345 (patch) | |
tree | 53243d8ed7f1a8a4758267827e2218bad2c24200 /tests | |
parent | 300c0376b5a85233dea9b1c9414a60ba585751d1 (diff) | |
download | Nim-5bd3ec0bfb77a1a7342a183876e45c333b804345.tar.gz |
Remove spurious import added in the last commit.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/parser/tcommand_as_expr.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parser/tcommand_as_expr.nim b/tests/parser/tcommand_as_expr.nim index 3c02f8cb3..22c49ab3f 100644 --- a/tests/parser/tcommand_as_expr.nim +++ b/tests/parser/tcommand_as_expr.nim @@ -3,7 +3,7 @@ discard """ 5-120-120 359''' """ -import math +#import math proc optarg(x:int, y:int = 0):int = x + 3 * y proc singlearg(x:int):int = 20*x |