[Facades] Move IncrementalHash to System.Security.Cryptography.Algorithms facade
[mono-project.git] / mcs / tests / gtest-375.cs
blobf2a43b9228507eeea87d935bed1b4b1d1bb5cd98
1 using System;
3 public class X {
4 public static bool Compute (int x)
6 return x == null;
9 public static bool Compute2 (int x)
11 return x != null;
14 public static int Main ()
16 if (Compute (1) != false)
17 return 1;
19 if (Compute2 (1) != true)
20 return 1;
22 return 0;