Reenable a bunch of disabled iOS Mono SDKs test suites (#19301)
[mono-project.git] / mcs / errors / cs0023-19.cs
blob0992a506daf9f1bd68acf2cc187154a35fb64cc0
1 // CS0023: The `!' operator cannot be applied to operand of type `int?'
2 // Line: 9
4 class Z
6 public static void Main ()
8 int? n = null;
9 var m = !n;