Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-895.cs
1 using System;
2
3 class X
4 {
5         public void Test (int g, out int results)
6         {
7                 if ((results = Foo (g > 0 ? 1 : 2)) != 4)
8                 {
9                         Console.WriteLine (results);
10                 }
11         }
12
13         int Foo (object o)
14         {
15                 return 4;
16         }
17
18         public static void Main ()
19         {
20         }
21 }