blob: dd9c773435c022e1dbbfe972c1ad77fb70a81def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* NEGATIVE TEST CASE -- xdrgen must REJECT this specification.
*
* RFC 5531 assigns only unsigned constants to program, version, and
* procedure numbers (Section 12.3). This spec gives the version a
* negative number, which the front end must reject.
*
* Expected diagnostic:
* negative version number -1 in program 'BADPROG'
*
* The tests directory has no automated runner; exercise by hand:
* ./xdrgen definitions tests/bad-version-number-negative.x (must fail)
*/
program BADPROG {
version BADVERS {
void BADPROC_NULL(void) = 0;
} = -1;
} = 100000;
|