URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [pr51150.C] - Rev 709
Go to most recent revision | Compare with Previous | Blame | View Log
// 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);
Go to most recent revision | Compare with Previous | Blame | View Log