per constraints checking


git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1234 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/tests/118-per-constraint-OK.asn1 b/tests/118-per-constraint-OK.asn1
index d7c840b..b0604f7 100644
--- a/tests/118-per-constraint-OK.asn1
+++ b/tests/118-per-constraint-OK.asn1
@@ -11,6 +11,11 @@
 	DEFINITIONS ::=
 BEGIN
 
-	C ::= IA5String (SIZE(10) ^ FROM("A".."D") | SIZE(20) ^ FROM("D".."F"))
+	C ::= IA5String (SIZE(10) ^ FROM("A".."D")
+			| SIZE(20) ^ FROM("D".."F"))
+
+	P ::= IA5String (FROM("AB") ^ SIZE(1..2)
+			 | FROM("DE") ^ SIZE(3)
+			 | FROM("AXE") ^ SIZE(1..5))
 
 END