aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/crash18.C
blob: 5eb92929cbdf3955a9fa820ce00144c9594fd53b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile }
// Contributed by: <leif dot lonnblad at thep dot lu dot se>
// PR c++/15064: typeid does not form an integral constant expression

#include <typeinfo>

template <typename T>
void dummy() {
  const std::type_info& t = typeid(T);
  const std::type_info& t2 = typeid(float);
}

template void dummy<int>(void);