d92fbdb7ac924b2270b1099fde540f7bf89de529
[com/asn1c.git] / tests / tests-asn1c-compiler / 147-inherit-per-constraints-OK.asn1
1 -- OK: Everything is fine
2
3 -- iso.org.dod.internet.private.enterprise (1.3.6.1.4.1)
4 -- .spelio.software.asn1c.test (9363.1.5.1)
5 -- .147
6
7 ModuleInheritPERConstraints
8         { iso org(3) dod(6) internet (1) private(4) enterprise(1)
9                 spelio(9363) software(1) asn1c(5) test(1) 147 }
10         DEFINITIONS ::=
11 BEGIN
12
13     Short ::= INTEGER (0..65535)
14     Alias ::= Short
15
16     Soo ::= SEQUENCE {
17         foo INTEGER (0..65535),
18         bar Short,
19         baz Alias
20     }
21
22 END