summary refs log blame commit diff stats
path: root/tests/cpp/t10241.nim
blob: 21d6a0f4e491a94236988ba9c5cbd63845938437 (plain) (tree)


















                                                                 
discard """
  targets: "cpp"
  action: "compile"
"""

type
  String* {.importcpp: "std::string", header: "string".} = object

proc initString*(): String
    {.importcpp: "std::string()", header: "string".}

proc append*(this: var String, str: String): var String
    {.importcpp: "append", header: "string", discardable.}

var
  s1 = initString()
  s2 = initString()

s1.append s2