mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
12 lines
167 B
Plaintext
12 lines
167 B
Plaintext
module test;
|
|
macro void test()
|
|
{
|
|
any *$value;
|
|
typeid t = $value.type; // #error: This value is known to be null so you
|
|
}
|
|
|
|
fn int main()
|
|
{
|
|
test();
|
|
return 0;
|
|
} |