Sign in
llvm
/
llvm
/
release_16
/
.
/
test
/
C++Frontend
/
2003-11-18-MemberInitializationCasting.cpp.tr
blob: 02b162ce91c8c663f705f3bc4953689c705cfb68 [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -xc++ -S -o - %s | not grep ' cast '
struct
A
{
A
()
:
i
(
0
)
{}
int
getI
()
{
return
i
;}
int
i
;
};
int
f
(
int
j
)
{
A a
;
return
j
+
a
.
getI
();
}