aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/class-deduction83.C
blob: 63eab6a84429171517aec2e2a3be4a832446e527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/96474
// { dg-do compile { target c++17 } }

template <typename = void>
struct A
{
    template <typename = void>
    struct B
    {
    };
};
    
A<>::B b;