source:
tests/errors/scope.cfa
@
ec20ab9
Last change on this file since ec20ab9 was 4d860ea3, checked in by , 13 months ago | |
---|---|
|
|
File size: 777 bytes |
Rev | Line | |
---|---|---|
[4d860ea3] | 1 | // Keep harmonized with errors/scope. |
[51b7345] | 2 | |
[4d860ea3] | 3 | #ifdef OMIT_DRIVING_REJECTIONS |
4 | // For manual sanity checking: | |
5 | // Leave out the offensive declarations and verify that what's left is accepted. | |
6 | #define EXPREJ(...) | |
7 | #else | |
8 | #define EXPREJ(...) __VA_ARGS__ | |
9 | #endif | |
[51b7345] | 10 | |
11 | ||
[4d860ea3] | 12 | int thisIsAnError; |
13 | EXPREJ( int thisIsAnError; ) | |
[51b7345] | 14 | |
[4d860ea3] | 15 | int thisIsNotAnError; |
16 | float thisIsNotAnError; | |
[51b7345] | 17 | |
[4d860ea3] | 18 | int thisIsAlsoNotAnError() { |
19 | int thisIsNotAnError; | |
20 | } | |
[51b7345] | 21 | |
[4d860ea3] | 22 | int thisIsAlsoNotAnError( double x ) { |
23 | } | |
24 | ||
25 | double thisIsStillNotAnError( double ); | |
26 | double thisIsStillNotAnError( double ); | |
27 | ||
28 | double butThisIsAnError( double ) { | |
29 | } | |
30 | EXPREJ( | |
31 | double butThisIsAnError( double ) { | |
32 | } | |
33 | ) | |
[51b7345] | 34 | |
[a65d92e] | 35 | // Local Variables: // |
36 | // tab-width: 4 // | |
37 | // End: // |
Note: See TracBrowser
for help on using the repository browser.