/****************************************************************************** * 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 inlinetemplate { type component C3 {} type record struct { integer m1, integer m2 } function f1( in template integer par1 ) { } function f2( in template struct par1 ) { } testcase tc3() runs on C3 { f1( integer : 33 ); f2( struct : { 42, 13 } ); setverdict(pass); } }