mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
9 lines
200 B
Plaintext
9 lines
200 B
Plaintext
import std;
|
|
macro @test(#e1, #e2)
|
|
{
|
|
assert(#e1 == #e2, "", io::EOF~!); // #error: This value is always rethrown and doesn't have a definite type. This is not valid
|
|
}
|
|
fn usz foo()
|
|
{
|
|
@test("", "");
|
|
} |