aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2003-11-18-MemberInitializationCasting.cpp.tr
blob: 1d607a2ac95469f46e1d334d54157262e1f045dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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();
}