blob: 9f772dc3c2264882d86075353e7d7da0860718c8 [file] [log] [blame]
// { dg-do compile { target c++11 } }
// { dg-additional-options "-fconcepts" }
template<typename> using A = auto; // { dg-error "30:.auto. not allowed in alias declaration" }
template<template<typename> class> struct B {};
B<A> b;