This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug objc++/47261] New: ICE on @property declaration in the wrong place
- From: "nicola at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Tue, 11 Jan 2011 23:16:31 +0000
- Subject: [Bug objc++/47261] New: ICE on @property declaration in the wrong place
- Auto-submitted: auto-generated
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47261
Summary: ICE on @property declaration in the wrong place
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: objc++
AssignedTo: unassigned@gcc.gnu.org
ReportedBy: nicola@gcc.gnu.org
The following testcase crashes the ObjC++ compiler (it works with the ObjC one)
/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, December 2010.
*/
/* { dg-do compile } */
@interface A
{
@property int x;
}
@end
Thanks