Test case for circular assignment dependencies.
authorKim Grasman <kim.grasman@gmail.com>
Thu, 24 Jul 2014 13:58:33 +0000 (15:58 +0200)
committerKim Grasman <kim.grasman@gmail.com>
Thu, 24 Jul 2014 13:58:33 +0000 (15:58 +0200)
testdata/cycle.asn [new file with mode: 0644]

diff --git a/testdata/cycle.asn b/testdata/cycle.asn
new file mode 100644 (file)
index 0000000..d2c8e5b
--- /dev/null
@@ -0,0 +1,15 @@
+CYCLIC DEFINITIONS ::=
+BEGIN
+
+  Data ::= CHOICE {
+        a [1] INTEGER,
+        b [2] DataSequence
+  }
+
+  DataSequence ::= SEQUENCE OF Data
+
+  Result ::= DataResult
+
+  DataResult ::= SEQUENCE OF Data
+
+END