mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
26 lines
443 B
Plaintext
26 lines
443 B
Plaintext
fn void test1()
|
|
{
|
|
bool x = $defined(1);
|
|
}
|
|
|
|
struct Foo
|
|
{
|
|
int x;
|
|
}
|
|
|
|
fn void test2()
|
|
{
|
|
$assert $defined(int[1]);
|
|
bool x = $defined(int[y]); // #error: 'y' could not be found, did you spell it right?
|
|
}
|
|
|
|
fn void test3()
|
|
{
|
|
$assert $defined(Foo[1]);
|
|
$assert $defined(Foo*);
|
|
$assert $defined(Foo[]);
|
|
$assert $defined(Foo[?]);
|
|
bool x = $defined(Foo[y]); // #error: 'y' could not be found, did you spell it right?
|
|
}
|
|
|