Files
linux-packaging-mono/mcs/errors/cs0183.cs

15 lines
198 B
C#
Raw Normal View History

// CS0183: The given expression is always of the provided (`int') type
// Line:
// Compiler options: -warnaserror -warn:1
class X {
static void Main ()
{
int i = 5;
if (i is int){
}
}
}