forked from nim-lang/Nim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes nim-lang#22680 Nim zero clear an object inherits C++ imported c…
…lass when a proc return it
- Loading branch information
Showing
2 changed files
with
60 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
discard """ | ||
cmd: "nim cpp $file" | ||
output:''' | ||
cppNZ.x = 123 | ||
cppNZInit.x = 123 | ||
inheritCpp.x = 123 | ||
inheritCppInit.x = 123 | ||
inheritCppCtor.x = 123 | ||
''' | ||
""" | ||
import std/sugar | ||
|
||
{.emit:"""/*TYPESECTION*/ | ||
struct CppNonZero { | ||
int x = 123; | ||
}; | ||
""".} | ||
|
||
type | ||
CppNonZero {.importcpp, inheritable.} = object | ||
x: cint | ||
|
||
InheritCpp = object of CppNonZero | ||
|
||
proc initCppNonZero: CppNonZero = | ||
CppNonZero() | ||
|
||
proc initInheritCpp: InheritCpp = | ||
InheritCpp() | ||
|
||
proc ctorInheritCpp: InheritCpp {.constructor.} = | ||
discard | ||
|
||
proc main = | ||
var cppNZ: CppNonZero | ||
dump cppNZ.x | ||
|
||
var cppNZInit = initCppNonZero() | ||
dump cppNZInit.x | ||
|
||
var inheritCpp: InheritCpp | ||
dump inheritCpp.x | ||
|
||
var inheritCppInit = initInheritCpp() | ||
dump inheritCppInit.x | ||
|
||
var inheritCppCtor = ctorInheritCpp() | ||
dump inheritCppCtor.x | ||
|
||
main() |