aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/pr38795.C
blob: 89ce0d368f75a88c8ba4b7eaf24847f2bc129892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/38795
// { dg-do compile { target c++11 } }

template<typename... T> int foo(int i)
{
  return *reinterpret_cast<T*>(i);	// { dg-error "not expanded with|T" }
}

void bar(int i)
{
  foo<int>(i);
}