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-subtyping-1.cpp
blob: 63fd30979c4d65448dc32ee58cb00851131e0bf7 (
plain
) (
blame
)
1
2
3
4
5
class
A
{
public
:
};
class
B
:
public
A
{
public
:
};
int
main
()
{
B
*
x
=
new
A
();
}