Files
c3c/test/test_suite/compile_time_introspection/defined_inits2.c3t
Christoffer Lerno a3a6319bcf Fix tests
2025-09-01 13:32:40 +02:00

14 lines
174 B
Plaintext

struct Test
{
int a;
}
fn int main(String[] args)
{
bool x = test(Test, {"a"});
return 0;
}
macro test($Type, ...)
{
return $defined($Type t = $vaexpr[0]);
}