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