[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs0183.cs
1 // CS0183: The given expression is always of the provided (`int') type
2 // Line:
3 // Compiler options: -warnaserror -warn:1
4
5 class X {
6
7         static void Main ()
8         {
9                 int i = 5;
10
11                 if (i is int){
12                 }
13         }
14 }