[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-929.cs
1 public class Wibble 
2 {
3         public static void Main () {
4                 Wibble w = new Wibble();
5                 if (w == (null)) {
6                 }
7
8                 if (w != (null)) {
9                 }
10
11                 if ((null) == w) {
12                 }
13
14                 if ((null) != w) {
15                 }
16         }
17 }