parser: test verzeichnis verschoben
[uebersetzerbau-ss10.git] / test / parser / a.0
1 struct mystruct end;
2 method f ()
3         var muh := 0x10;
4         muh := muh * -2;
5         /* test comment */
6         /* groeserer comemnt
7
8         */
9         if (muh < -0x5) then
10                 muh := muh * -2;
11         else
12                 muh := 0x55;
13         end;
14
15         while (muh < 10) do
16                 muh := muh * -2;
17         end;
18
19         /* warum geht das nciht? */
20         while (muh < 10) do
21                 muh := muh - 2;
22         end;
23
24         return muh;
25 end;