Ticket #4658: Test.mo

File Test.mo, 417 bytes (added by Andrea Bartolini, 8 years ago)
Line 
1package Test
2model A
3 type ActionType = enumeration (direct "action is direct",
4 reverse "action is reverse");
5end A;
6
7model B
8 extends A;
9 parameter ActionType action1;
10 parameter Test.A.ActionType action2;
11end B;
12
13model C
14 B b1 annotation(
15 Placement(visible = true, transformation(origin = {-50, -2}, extent = {{-10, -10}, {10, 10}}, rotation = 0)));
16end C;
17end Test;