blob: 5dc878be4cbe3e632bdf0f35367cce5dd9bd5d94 [file] [log] [blame]
namespace N {
template <class T>
struct C {
template <class U, T t>
struct Implementation {};
};
template <class T>
template <T t>
struct C<T>::Implementation<void, t> {
static void method() {}
};
}
int main() {
N::C<int>::Implementation<void, 0>::method();
}