blob: 2e9b7ce7ab69d9ad88956070ca2d684e0afd72fe [file] [log] [blame]
// { dg-do assemble }
// 981204 bkoz
// g++/18208
typedef unsigned int uint_32;
class puertorico {
public:
void *f ();
private:
uint_32 member;
};
void foo( )
{
uint_32 ui;
puertorico obj;
// Bug using static_cast<>
ui = static_cast<uint_32>(obj); // { dg-error "" } // ERROR -
// Bug when missing the pair of braces
ui = (uint_32) obj.f; // { dg-error "" } // ERROR -
}