Files
Nim/tests_disabled/ic/ic_disabled/tgenericinst.nim
2026-01-09 13:10:04 +01:00

12 lines
258 B
Nim

discard """
cmd: "nim cpp --incremental:legacy $file"
"""
{.emit:"""/*TYPESECTION*/
#include <iostream>
struct Foo { };
""".}
type Foo {.importcpp.} = object
echo $Foo() #Notice the generic is instantiate in the this module if not, it wouldnt find Foo