[bcl] Update BCL Linked Size
[mono-project.git] / mcs / tests / test-893.cs
blob97cfc0a7cca8583f8d2fe22644c1daf7d6bbbdb0
1 public class A
3 public static bool TryAssign (out int x)
5 x = 0;
6 return true;
9 public static void Main ()
11 int x, y;
12 if ((!TryAssign (out x) || x == 0) & (!TryAssign (out y) || y == 0)) {