diff options
author | Zahary Karadjov <zahary@gmail.com> | 2011-12-13 22:49:06 +0200 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2011-12-13 22:52:13 +0200 |
commit | 841d6b6aa991785d046e1070f8bfa86a5b113555 (patch) | |
tree | c97b31aa90a79be98c74eecde92058fd67869ece /tests/compile | |
parent | f19c1c0f6e93a561dc13ef57d136957edeba9ed4 (diff) | |
download | Nim-841d6b6aa991785d046e1070f8bfa86a5b113555.tar.gz |
fixed some recently introduced compilation errors in the standard library
Diffstat (limited to 'tests/compile')
-rw-r--r-- | tests/compile/tslurp.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compile/tslurp.nim b/tests/compile/tslurp.nim index c99fefe23..f9456ce6b 100644 --- a/tests/compile/tslurp.nim +++ b/tests/compile/tslurp.nim @@ -1,6 +1,6 @@ const - myRes = slurp"readme.txt" + myRes = slurp"../../readme.txt" echo myRes |