aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/pr51150.C
blob: af1d1cf2ea6e93607d5e44bb8acde9827e53e5d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/51150
// { dg-do compile { target c++11 } }

struct Clock {
  double Now();
};
template <class T> void Foo(Clock* clock) {
  const int now = clock->Now();
}

template void Foo<float>(Clock*);

template <class T> void Boo(int val) {
  const int now1 = (double)(val);
  const int now2 = const_cast<double>(val); // { dg-error "invalid" }
  const int now3 = static_cast<double>(val);
  const int now4 = reinterpret_cast<double>(val); // { dg-error "invalid" }
}

template void Boo<float>(int);