[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / tests / test-893.cs
1 public class A
2 {
3         public static bool TryAssign (out int x)
4         {
5                 x = 0;
6                 return true;
7         }
8
9         public static void Main ()
10         {
11                 int x, y;
12                 if ((!TryAssign (out x) || x == 0) & (!TryAssign (out y) || y == 0)) {
13                 }
14         }
15 }