diff options
author | def <dennis@felsin9.de> | 2015-02-04 22:09:42 +0100 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-02-04 22:09:42 +0100 |
commit | f18368bd3b688a6fc1bc4ff729577be6bd9a9d3e (patch) | |
tree | b152904b57539520f99a64058cb1e1cb9367aa71 /tests/modules | |
parent | 1c34f30bbb4e6c12e48814e7524e7e5faba72970 (diff) | |
download | Nim-f18368bd3b688a6fc1bc4ff729577be6bd9a9d3e.tar.gz |
Clean up tests/modules
Diffstat (limited to 'tests/modules')
-rw-r--r-- | tests/modules/tmismatchedvisibility.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/modules/tmismatchedvisibility.nim b/tests/modules/tmismatchedvisibility.nim index 6f2f79282..325c729c0 100644 --- a/tests/modules/tmismatchedvisibility.nim +++ b/tests/modules/tmismatchedvisibility.nim @@ -1,9 +1,9 @@ discard """ line: 8 - errormsg: "public implementation 'tmismatchedvisibility.foo(a: int): int' has non-public forward declaration in tmismatchedvisibility.nim(6,5)" + errormsg: "public implementation 'tmismatchedvisibility.foo(a: int)' has non-public forward declaration in " """ proc foo(a: int): int proc foo*(a: int): int = - result = a + a \ No newline at end of file + result = a + a |