[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / test-null-operator-12.cs
blob71fa66426a3783cf42d9dabdae3236b20df8b1cf
1 class Test
3 int? _state;
4 public bool Working () => _state?.ToString () != "";
6 public static int Main ()
8 var t = new Test ();
9 if (!t.Working ())
10 return 1;
12 return 0;