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-call-2.cpp
blob: ddf482c140aa8eb818e354451559aadcce8f5e15 (
plain
) (
tree
)
8f1093f
1
2
3
4
5
class
S
{
public
:
int
a
;
};
void
f
(
int
x
)
{}
int
main
()
{
S
s
;
f
(
s
);
}