aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/pr51150.C
blob: 37eb166b43e3d9ae681b3e0d64b6a649af6b8a68 (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-options "-std=c++0x" }

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);