summaryrefslogtreecommitdiff
path: root/tests/headers/default-template-parameter.hpp
blob: 4deed834fad4d012d39cf945dc6d98146012b272 (plain)
1
2
3
4
5
6
7
template <typename T, typename U = int>
struct Foo {
    T t;
    U u;
};

static Foo<bool> bar;