re PR c++/42567 ([C++0x] ICE with auto in type_unification_real, at cp/pt.c:13310)
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / auto17.C
blob03608d33ac63a7482919d7ac83fd57e21f834de8
1 // PR c++/42567
2 // { dg-options "-std=c++0x" }
4 template<typename B>
5 struct A {
6   template<typename C>
7   void fn(C c) {
8     auto& key = *c;
9   }