Files
2025-05-31 17:35:29 +02:00

10 lines
75 B
Plaintext

macro @test(#a)
{
$defined(#a);
}
fn int main()
{
@test(0);
return 0;
}