mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-17 10:07:09 +00:00
13 lines
171 B
Nim
13 lines
171 B
Nim
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"
|