mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
10 lines
175 B
Plaintext
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;
|
|
} |