[aarch64] Document rewriting of -march=native to -mcpu=native
[official-gcc.git] / gcc / testsuite / g++.dg / template / pr66686.C
blobd8aea625d46c368e7797820566fe0fbea58f20f7
1 // PR c++/66686
3 template <int>
4 struct Y { };
6 template <class B, template <template <B> class Z> class C>
7 struct X
9   C<Y> a;  // { dg-bogus "mismatch" }
12 template <template <int> class>
13 struct A { };
15 X<int, A> a;