Files
c3c/test/test_suite/compile_time/ct_empty_var_void.c3

9 lines
219 B
Plaintext

fn void a()
{
void? $y; // #error: Expected a runtime or compile time type with a well-defined zero value
}
fn int main()
{
void $x; // #error: Expected a runtime or compile time type with a well-defined zero value
}