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

8 lines
148 B
Plaintext

A := "Something";
main :: proc(): int {
B := &:*char(A)[1]; @unused
C := *:*char(A); @unused
D := :*char(A)[0]; @unused
return 0;
}