mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
18 lines
217 B
Plaintext
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; } |