Files
c3c/test/test_suite/statements/label_addr.c3
Christoffer Lerno e4e499edd2 Allow $defined take declarations: $defined(int x = y)
Taking the address of a label would cause a crash. #2430
2025-08-23 12:00:17 +02:00

10 lines
175 B
Plaintext

import std;
fn int main(String[] args)
{
switch FOO: (1)
{
case 1:
io::printfn("%p", &FOO); // #error: It is not possible to take the address of a label
}
return 0;
}