]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/funcdef-attr-1.c.expected
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / funcdef-attr-1.c.expected
1 /* The declarator in a function definition should be able to take the
2    form of an attributed function declarator, not just a plain
3    function declarator.  This was formerly allowed by some of the code
4    but then the wrong constraint checks were made because other code
5    didn't recognise the declarator as being that of the function
6    definition.  */
7 /* Origin: Joseph Myers <jsm@polyomino.org.uk>.  */
8
9 int (__attribute__((const)) x) (a, b)
10      int a;
11      int b;
12 {
13   return a + b;
14 }