Files
lib_compiler/tests/regression_error_address_of_address.txt
2024-04-13 15:29:53 +02:00

7 lines
146 B
Plaintext

// #failed: resolve
// #error: trying to access address of a temporal object
main :: proc(): int {
a := 0;
app := &(&(a));
return 0;
}