Opened 14 years ago
Last modified 14 years ago
#1516 closed defect (fixed)
list command has odd indentation
| Reported by: | Martin Sjölund | Owned by: | Martin Sjölund |
|---|---|---|---|
| Priority: | high | Milestone: | |
| Component: | Version: | ||
| Keywords: | Cc: | Martin Sjölund, Adrian Pop |
Description
Try the following; does not work :(
package A "test"
import a;
package B
import b;
input Real[1,2] i;
output Integer g;
protected
String temp,temp2 "temp variables";
public
input String c;
equation
a = ((b + 12)) * 5;
if (c == true) then
(b,a) = (13,7);
if (false) then
b = (aaa < 20);
elseif true then
b = 10;
elseif a == 10 then
b = a;
else
b = 0;
end if;
end if;
end B;
operator function b
import c;
end b;
end A;
Note:
See TracTickets
for help on using tickets.

Fixed in revision r9003.