OSDN Git Service

Some raw string changes from N3077
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / auto17.C
1 // PR c++/42567
2 // { dg-options "-std=c++0x" }
3
4 template<typename B>
5 struct A {
6   template<typename C>
7   void fn(C c) {
8     auto& key = *c;
9   }
10 };