mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-16 08:04:20 +00:00
20
tests/cpp/tstaticvar_via_typedesc.nim
Normal file
20
tests/cpp/tstaticvar_via_typedesc.nim
Normal file
@@ -0,0 +1,20 @@
|
||||
discard """
|
||||
cmd: "nim cpp $file"
|
||||
output: "42"
|
||||
"""
|
||||
|
||||
# bug #2324
|
||||
|
||||
static: assert defined(cpp), "compile in cpp mode"
|
||||
|
||||
{.emit: """
|
||||
class Foo {
|
||||
public:
|
||||
static int x;
|
||||
};
|
||||
int Foo::x = 42;
|
||||
""".}
|
||||
|
||||
type Foo {.importcpp:"Foo".} = object
|
||||
proc x* (this: typedesc[Foo]): int {.importcpp:"Foo::x@", nodecl.}
|
||||
echo Foo.x
|
||||
Reference in New Issue
Block a user