index
:
LPC-Projet.git
master
Projet de Langages de Programmation et Compilation
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
typing
/
bad
/
testfile-assign-7.cpp
blob: 2e12f3a480cffba74e37e5ac2348df2b56fb9ecf (
plain
) (
blame
)
1
2
3
4
class
S
{
public
:
int
a
;
};
class
T
{
public
:
int
b
;
};
int
main
()
{
S
s
;
T
t
;
s
=
t
;
}