Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
d22fe2b51f553f7eca200cd22b9e2247f9aea2ff
/
.
/
test
/
C++Frontend
/
2003-11-18-MemberInitializationCasting.cpp.tr
blob: cb66ba1127dbdb1d1f649360b844ca7279a55c2e [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | notcast
struct
A
{
A
()
:
i
(
0
)
{}
int
getI
()
{
return
i
;}
int
i
;
};
int
f
(
int
j
)
{
A a
;
return
j
+
a
.
getI
();
}