t22712.nim 277 B

123456789101112131415
  1. discard """
  2. targets: "cpp"
  3. errormsg: "constructor in an imported type needs importcpp pragma"
  4. line: 14
  5. """
  6. {.emit: """/*TYPESECTION*/
  7. struct CppStruct {
  8. CppStruct();
  9. };
  10. """.}
  11. type CppStruct {.importcpp.} = object
  12. proc makeCppStruct(): CppStruct {.constructor.} =
  13. discard