add ISafeSerializationData
[mcs.git] / tests / test-779.cs
blob0792c94bcba2bee2e7ac89fd2ff8f20f6fd211b0
1 using System;
3 public static class Test
5 public static int Main ()
7 if (test1 (15, 15))
8 return 1;
10 return 0;
13 //Bug #610126
14 static bool test1 (long a, long b)
16 if ((a & b) == 0L) return true;
17 return false;