mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
15 lines
277 B
Nim
15 lines
277 B
Nim
discard """
|
|
targets: "cpp"
|
|
errormsg: "constructor in an imported type needs importcpp pragma"
|
|
line: 14
|
|
"""
|
|
{.emit: """/*TYPESECTION*/
|
|
struct CppStruct {
|
|
CppStruct();
|
|
};
|
|
""".}
|
|
|
|
type CppStruct {.importcpp.} = object
|
|
|
|
proc makeCppStruct(): CppStruct {.constructor.} =
|
|
discard |