summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/nsdmi-template6.C
blob: 33ed82d0813721c3da69d25e74465cd352fba466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/58829
// { dg-do compile { target c++11 } }

struct A {
    int f() {return 0;}
} a;

struct B {
    template<int=0> struct C {
        int i = a.f();
    };
};
B::C<> c;