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

9 lines
67 B
Plaintext

FUNC INT main() {
INT i
INT i
i := 1
PRINT i
RETURN 0
}