2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / crash37.C
blob900fd72cd9e5b458bfea202cc6a417eeb4f2e285
1 // { dg-do assemble  }
3 // Copyright (C) 2000 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 23 Nov 2000 <nathan@codesourcery.com>
6 // bug 706. We iced when meeting a decl with type error-mark-node
8 class bifstream;
11 int main()
13   bifstream bifs;   // { dg-error "" } incomplete type
14   if (!bifs)
15     {
16     }
17   return 0;