summary refs log tree commit diff stats
path: root/tests/modules/tmismatchedvisibility.nim
blob: b649a5a3eeb4b35fdee806025b58aca371dce462 (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  errormsg: "public implementation 'tmismatchedvisibility.foo(a: int)' has non-public forward declaration at "
  line: 8
"""

proc foo(a: int): int

proc foo*(a: int): int =
  result = a + a