7 typedef string<10> MyStringType
;
8 typedef string<10> MyOtherStringType
; // Note: SAME LENGTH
12 void op1
( in MyStringType s
);
13 void op2
( in MyOtherStringType s
);
21 typedef string<40> MyString
;
25 void someOp
( in MyString s
);
31 typedef string<100> MyString
; // Same name, different size!
35 void someOp
( in MyString s
);
41 typedef string<100> MyString
; // Same name, same size!
45 void someOp
( in MyString s
);