mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
11 lines
169 B
Plaintext
11 lines
169 B
Plaintext
fn void main()
|
|
{
|
|
$error "Foo %s", 1; // #error: Foo 1
|
|
$assert 0 > 1 : "Foo %s", 0.0002;
|
|
}
|
|
|
|
fn void test()
|
|
{
|
|
$assert 0 > 1 : "Foo %s", 0.0002; // #error: Foo 0.0002
|
|
}
|