/****************************************************************************** * Copyright (c) 2000-2016 Ericsson Telecom AB * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Balasko, Jeno * Raduly, Csaba * ******************************************************************************/ module atr_untagged_SE { //^In TTCN-3 module `atr_untagged_SE':// type record R { //^In type definition// record of universal charstring aa //^In record field// \ //^error: A type with final encoding attribute UNTAGGED shall not have any of the final encoding instructions ANY-ATTRIBUTES, ANY-ELEMENT, ATTRIBUTE, DEFAULT-FOR-EMPTY, EMBED-VALUES, PI-OR-COMMENT, USE-NIL or USE-TYPE// \ //^error: Neither the type with ATTRIBUTE, nor its enclosing type may be marked UNTAGGED// } with { variant (aa) "attribute"; variant (aa) "untagged"; } type record RR { //^In type definition// record of universal charstring aa //^In record field// \ //^error: Neither the type with ATTRIBUTE, nor its enclosing type may be marked UNTAGGED// } with { variant (aa) "attribute"; variant "untagged"; } } with { encode "XML"; }