Files
c3c/test/test_suite/statements/for_errors.c3
Christoffer Lerno 97ac957cb7 "Public by default"
2021-05-30 16:30:16 +02:00

7 lines
133 B
Plaintext

func void foo() {}
func int main()
{
for (; foo() ; ) {} // #error: Cannot implicitly cast 'void' to 'bool'
return 0;
}