aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/constexpr-typeid.C
blob: b523bb38cc1b49162209f0f760495f20e307c28a (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-options -std=c++0x }

#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 *-*-* } }