blob: c06847e67c359ff32ea3783a372769315a5f7810 [file] [log] [blame]
// { dg-do compile { target c++2a } }
template<typename...> using A = auto; // { dg-error "not allowed" }
// In pre-20, the error is "invalid use of auto"
template<typename... T> using B = A<T...>;