aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/auto33.C
blob: dade5a8ba2554df7832fe6587ea660a686b13949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/53484
// { dg-do compile { target c++11 } }

template<class T,class U> struct ST;
template<class T> struct ST<T,T> {};

template <class T>
void f(T x){
   [&]{
     auto y = x;
     ST<decltype(y),int>();
   }();
}

int main(){ f(0); }