Ticket #6116: TestInput.mo

File TestInput.mo, 165 bytes (added by Andrea Bartolini, 6 years ago)
Line 
1package TestInput
2 record R1
3 Real x;
4 Real y;
5 end R1;
6
7 model M1
8 input R1 rec1;
9 Real z;
10 equation
11 z = time;
12 end M1;
13end TestInput;