Files
c3c/test/test_suite/generic/implicit_import_of_generic.c3
Christoffer Lerno 8b49e6c14d Rename def to alias.
2025-03-13 11:22:27 +01:00

18 lines
216 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; }