Files
c3c/test/test_suite/generic/implicit_import_of_generic.c3
2026-01-18 00:33:43 +01:00

18 lines
217 B
Plaintext

module test;
import std::io;
import abc;
alias Def2 = Def;
alias 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; }