blob: 041b20a4c16d3736213e9e9e32cc2a910abf7c28 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
NullTest DEFINITIONS ::=
BEGIN
NullTestData ::= SEQUENCE {
body NullBody,
tail INTEGER
}
NullBody ::= CHOICE {
null [0] NULL,
notNull [1] INTEGER
}
END
|