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