blob: 1b5d5df8e390fe1faa445f230ab4ab1e863e0e5a [file] [log] [blame]
// Build don't link:
class x
{
public:
virtual int is_constant();
};
void foo()
{
x* y;
if (y->is_constant) // ERROR - assuming &
{
}
}