added extensibility


git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@417 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/tests/62-any-OK.asn1 b/tests/62-any-OK.asn1
index 5b58562..7c9991b 100644
--- a/tests/62-any-OK.asn1
+++ b/tests/62-any-OK.asn1
@@ -12,8 +12,9 @@
 BEGIN
 
 	T ::= SEQUENCE {
-		i	INTEGER,
-		any	[1] ANY		-- Converted into [1] EXPLICIT ANY
+		i	INTEGER OPTIONAL,
+		any	[1] ANY,	-- Converted into [1] EXPLICIT ANY
+		...
 	}
 
 END
diff --git a/tests/62-any-OK.asn1.-EF b/tests/62-any-OK.asn1.-EF
index eb92709..bc08f03 100644
--- a/tests/62-any-OK.asn1.-EF
+++ b/tests/62-any-OK.asn1.-EF
@@ -6,8 +6,9 @@
 BEGIN
 
 T ::= SEQUENCE {
-    i	 INTEGER,
-    any	 [1] EXPLICIT ANY
+    i	 INTEGER OPTIONAL,
+    any	 [1] EXPLICIT ANY,
+    ...
 }
 
 END