Commit da3a4719 by Nathan Sidwell Committed by Nathan Sidwell

* g++.old-deja/g++.other/sizeof5.C: New test.

From-SVN: r32133
parent 41cbc04c
2000-02-24 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.other/sizeof5.C: New test.
2000-02-23 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.pt/memtemp79.C: Fixed. Remove XFAIL.
......
// 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
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment