URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [expr/] [static_cast7.C] - Rev 694
Go to most recent revision | Compare with Previous | Blame | View Log
// Regression test for bug 39415 (and its duplicate 44916).
struct S {};
struct T : S {};
int f(const T*) {}
void f(T*);
int main() {
S* s(0);
int a = f(static_cast<const T*>(s));
int b = f(static_cast<const T*>(0));
}
Go to most recent revision | Compare with Previous | Blame | View Log