index
:
LPC-Projet.git
master
Projet de Langages de Programmation et Compilation
summary
refs
log
blame
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
typing
/
bad
/
testfile-scope-2.cpp
blob: 13135bae284b576a3b02d5816b78c3d032f49dae (
plain
) (
tree
)
8f1093f
1
2
3
int
main
()
{
int
x
;
if
(
x
)
{
int
y
;
}
else
y
;
}