NativeEnumerated.c vars NULL init and check
[com/asn1c.git] / tests / tests-asn1c-compiler / 127-per-long-OK.asn1
1
2 -- OK: Everything is fine
3 -- Also see .134 for wider integer types.
4
5 -- iso.org.dod.internet.private.enterprise (1.3.6.1.4.1)
6 -- .spelio.software.asn1c.test (9363.1.5.1)
7 -- .127
8
9 ModulePERLong
10         { iso org(3) dod(6) internet (1) private(4) enterprise(1)
11                 spelio(9363) software(1) asn1c(5) test(1) 127 }
12         DEFINITIONS AUTOMATIC TAGS ::=
13 BEGIN
14
15         T ::= SEQUENCE {
16                 -- Should be supported on all 32-bit platforms and above.
17                 small32range    INTEGER (-2000000000..2000000000),
18                 full32range     INTEGER (-2147483648..2147483647),
19                 unsigned32      INTEGER (0..4294967295),
20                 unsplit32       INTEGER (5..500|600..4294967290)
21         }
22
23 END