2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0183.cs
blob9f00a589830b7f8f2b5d2217e11de2e4f0001625
1 // CS0183: The given expression is always of the provided (`int?') type
2 // Line: 10
3 // Compiler options: -warnaserror -warn:1
5 class X
7 public void Foo ()
9 int? x = null;
10 if (x is int?) {