Tagged types inside SET OF/SEQUENCE OF test

diff --git a/tests/32-sequence-of-OK.asn1.-EF b/tests/32-sequence-of-OK.asn1.-EF
new file mode 100644
index 0000000..543c2ab
--- /dev/null
+++ b/tests/32-sequence-of-OK.asn1.-EF
@@ -0,0 +1,18 @@
+
+ModuleTestSequenceSimple {iso org(3) dod(6) internet(1) private(4)
+	enterprise(1) spelio(9363) software(1) asn1c(5) test(1)
+	32 }
+DEFINITIONS IMPLICIT TAGS ::=
+BEGIN
+
+Programming ::= SEQUENCE SIZE(1..10) OF [0] IMPLICIT Fault
+
+Fault ::= SET OF Error
+
+Error ::= SEQUENCE {
+    ...
+}
+
+maxSize INTEGER ::= 10
+
+END