1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-mirror/test/FrontendC++/2003-11-18-MemberInitializationCasting.cpp

14 lines
218 B
C++
Raw Normal View History

// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | notcast
2003-11-18 22:05:55 +01:00
struct A {
A() : i(0) {}
int getI() {return i;}
int i;
};
int f(int j)
{
A a;
return j+a.getI();
}