aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/asn1_SUITE_data/SetExtension.asn1
blob: 53091d3eea4e0ec72fc583e4ae3c7a743f5b301a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
SetExtension DEFINITIONS IMPLICIT TAGS ::= 

BEGIN

IMPORTS XSetExt1, XSetExt2  FROM External;

SetExt1 ::= SET 
{
  ...
}

SetExt2 ::= SET 
{
  bool  BOOLEAN,
  int  INTEGER,
  ...
}

SetExt3 ::= SET 
{
  ...,
  bool  BOOLEAN,
  int  INTEGER
}

SetExt4 ::= SET 
{
  bool  BOOLEAN,
  ...,
  int  INTEGER
}

SetExt1X ::= XSetExt1 
SetExt2X ::= XSetExt2 


END