Opened 13 years ago

Last modified 13 years ago

#1516 closed defect (fixed)

list command has odd indentation

Reported by: sjoelund.se Owned by: sjoelund.se
Priority: high Milestone:
Component: Version:
Keywords: Cc: sjoelund.se, adrpo

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;

Change History (1)

comment:1 Changed 13 years ago by perost

Fixed in revision r9003.

Note: See TracTickets for help on using tickets.