aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/asn1_bin_v2_SUITE_data/ChoiceInSeq.asn
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asn1/test/asn1_bin_v2_SUITE_data/ChoiceInSeq.asn')
-rw-r--r--lib/asn1/test/asn1_bin_v2_SUITE_data/ChoiceInSeq.asn22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_bin_v2_SUITE_data/ChoiceInSeq.asn b/lib/asn1/test/asn1_bin_v2_SUITE_data/ChoiceInSeq.asn
new file mode 100644
index 0000000000..ac93226a1b
--- /dev/null
+++ b/lib/asn1/test/asn1_bin_v2_SUITE_data/ChoiceInSeq.asn
@@ -0,0 +1,22 @@
+ChoiceInSeq DEFINITIONS ::=
+BEGIN
+CallCentreServiceNotificationArg ::= SEQUENCE {
+ scriptInformation [0] ScriptToScriptInformation,
+ eventInformation
+ CHOICE
+ { callEvent [1] CallEvent,
+ billingReport [2] BillingInformation
+ } OPTIONAL
+}
+
+ScriptToScriptInformation ::= INTEGER
+CallEvent ::= INTEGER
+BillingInformation ::= INTEGER
+EventInformation ::=
+ CHOICE
+ { callEvent [1] CallEvent,
+ billingReport [2] BillingInformation
+ }
+
+
+END