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

#include <typeinfo>

struct A { virtual void f(); };

extern constexpr const std::type_info* p1 = &typeid(int);
extern constexpr const std::type_info* p2 = &typeid(A);
// typeid-expression whose operand is of a polymorphic class type
extern constexpr const std::type_info* p3 = &typeid((A())); // { dg-error "" "" { xfail *-*-* } }