mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 03:32:32 +00:00
9 lines
237 B
Nim
9 lines
237 B
Nim
discard """
|
|
line: 8
|
|
errormsg: "public implementation 'tmismatchedvisibility.foo(a: int): int' has non-public forward declaration in tmismatchedvisibility.nim(6,5)"
|
|
"""
|
|
|
|
proc foo(a: int): int
|
|
|
|
proc foo*(a: int): int =
|
|
result = a + a |