Files
c3c/test/test_suite/expressions/rvalues.c3

17 lines
180 B
Plaintext

macro void hello($bar)
{
$bar;
}
const FOO = 1 + 2;
fn void test()
{
var $Foo = int;
var $Bar = $Foo;
$Bar x;
hello(1);
var $foo = 1;
$foo;
FOO;
}