aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/auto32.C
blob: 2aad34e40ac8e2db9fc13d756dcf6f6be3b65c6c (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile { target c++11 } }

// { dg-final { scan-assembler "_Z1fIiEDTnw_Dapifp_EET_" } }
template <class T> auto f(T t) -> decltype (new auto(t));

int main()
{
  f(1);
}