blob: 150e0ad636be061ba175a305b9b53a82ef7a7c94 (
plain) (
blame)
1
2
3
4
5
|
// RUN: clang-cc -fsyntax-only -verify %s
// XFAIL: *
// A template-parameter shall not be used in its own default argument.
template<typename T = typename T::type> struct X; // expected-error{{default}}
|