Commit 3bb91036 by Neil Booth Committed by Neil Booth

* gcc.dg/decl-1.c: New test.

From-SVN: r49702
parent 26e9664c
2002-02-12 Neil Booth <neil@daikokuya.demon.co.uk>
* gcc.dg/decl-1.c: New test.
2002-02-12 David Billinghurst <David.Billinghurst@riotinto.com>
* gcc.dg/c99-flex-array-2.c: Add -std=iso9899:1999
......
/* Copyright (C) 2002 Free Software Foundation, Inc.
Source: Neil Booth, 12 Feb 2002.
In the declaration of proc, x must be parsed as a typedef name
(6.7.5.3 p11). */
typedef int x;
int proc(int (x)); /* x is a typedef, param to proc is a function. */
int proc2(int x); /* x is an identifier, param is an int. */
int main ()
{
return proc (proc2); /* { dg-bogus "integer from pointer" } */
}
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