URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [conversion/] [base1.C] - Rev 821
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/48749
struct Tuple3
{
float x;
};
struct Pos: virtual Tuple3 { };
struct TexCoords
{
Pos pos;
};
template <class T>
void eval (const TexCoords &coords)
{
const Pos &pos = coords.pos;
pos.x;
}
Go to most recent revision | Compare with Previous | Blame | View Log