1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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