Files
c3c/test/test_suite/generic/implicit_import_of_generic.c3

18 lines
216 B
Plaintext

module test;
import std::io;
import abc;
def Def2 = Def;
def Test = abc::cde::Abc(<int>);
module abc;
fn void test() {}
module abc::foo;
struct Def { int x; }
module abc::cde(<Type>);
struct Abc { Type a, b; }