e63282cb74bbe53198d435576c92597844fb327d
[deliverable/titan.core.git] / regression_test / visibility / module3.ttcn
1 /******************************************************************************
2 * Copyright (c) 2000-2014 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 ******************************************************************************/
8 module module3
9 {
10 type integer module3Type;
11 public type integer module3TypePublic;
12 friend type integer module3TypeFriend;
13 private type integer module3TypePrivate;
14
15 public type port pPublic message { inout charstring; } with {extension "internal"}
16 private type port pPrivate message { inout charstring; } with {extension "internal"}
17 friend type port pFriend message { inout charstring; } with {extension "internal"}
18
19
20 } // end of module3
This page took 0.032583 seconds and 5 git commands to generate.