1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00
llvm-mirror/test/C++Frontend/2003-11-18-MemberInitializationCasting.cpp.tr
2007-01-17 07:59:14 +00:00

14 lines
227 B
Plaintext

// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | not grep ' cast '
struct A {
A() : i(0) {}
int getI() {return i;}
int i;
};
int f(int j)
{
A a;
return j+a.getI();
}