summary refs log tree commit diff stats
path: root/tests/pragmas/t5149.nim
blob: 2d242a8d5f3e823c0f9010f6e25e00d2c9aad86b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  errormsg: "{.exportc.} not allowed for type aliases"
  line: 9
"""

type
  X* = object
    a: int
  Y* {.exportc.} = X

proc impl*(x: X) =
  echo "it works"