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-assign-6.cpp
blob: 12c2f37a302ef96b6136465a32a2d8b57137c43c (
plain
) (
tree
)
8f1093f
1
2
3
class
S
{
public
:
int
a
;
};
int
main
()
{
int
x
;
S
s
;
s
=
x
;
}