Files
Nim/tests/ic/tgenericinst.nim

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