blob: 8b56053b029c1c106fe6876456e4a8a3b75735e7 [file] [log] [blame]
// Build don't link:
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 23 Feb 2000 <nathan@codesourcery.com>
// Derived from a bug report by Marko Maekelae <Marko.Makela@HUT.FI>
// crash test
struct A;
void foo ()
{
sizeof ( void ()); // ERROR - ISO forbids
sizeof ( void (A::*) ());
sizeof ( void (A::*) () const);
sizeof (void (*) () const); // ERROR - invalid quals
sizeof ( void () const); // ERROR - ISO forbids, ERROR - invalid quals
}