Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0183-3.cs
1 // CS0183: The given expression is always of the provided (`int?') type
2 // Line: 10
3 // Compiler options: -warnaserror -warn:1
4
5 class X
6 {
7         public void Foo ()
8         {
9                 int? x = null;
10                 if (x is int?) {
11                 }
12         }
13 }