Ticket #5408: TestAnnotation.mo

File TestAnnotation.mo, 329 bytes (added by Francesco Casella, 6 years ago)
Line 
1package TestAnnotation
2 record DataType
3 extends Modelica.Icons.Record;
4 Real x;
5 annotation(defaultComponentName = "data",
6 defaultComponentPrefixes = "parameter");
7 end DataType;
8
9 record MyData
10 extends DataType(
11 x = 10);
12 end MyData;
13
14 model M
15 end M;
16end TestAnnotation;