aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-this16.C
blob: 736d5f50e55cd3fbdcdc3558eb34340c7f9a4db4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// PR c++/56699
// { dg-require-effective-target c++11 }

struct A
{
    int a;
};

struct T
{
    int x;

    T() : x([]{
        sizeof(::A::a);
        return 0;
    }())
    {}
};

struct B
{
    int a;
};

void f()
{
    []{sizeof(B::a);};
}