mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
27 lines
485 B
Plaintext
27 lines
485 B
Plaintext
module test2;
|
|
import test3;
|
|
struct Bar @if($defined(Foo.b)) // warning: There might be a method 'b' for 'Foo', but methods for the type have not yet been
|
|
{
|
|
int a;
|
|
}
|
|
|
|
struct Bar2 @if($defined((Foo){}.b)) // warning: There might be a method 'b' for 'Foo', but methods have not yet been completely
|
|
{
|
|
int a;
|
|
}
|
|
|
|
module test3;
|
|
struct Foo
|
|
{
|
|
int a;
|
|
}
|
|
module test;
|
|
|
|
import test2;
|
|
import test3;
|
|
|
|
fn int main()
|
|
{
|
|
Bar b; // #error: 'Bar' could not be found, did you spell it right
|
|
return 0;
|
|
} |