Files
tp2-vsl-pds/tests/testSemanticError/test_decl_scope2.vsl
2025-03-27 14:18:48 +01:00

12 lines
83 B
Plaintext

FUNC VOID f() {
INT i
i := 2
}
FUNC INT main() {
f()
PRINT i
RETURN 0
}