18d426334e4a642b94e2fe5a2ea967d23b0182e2
[mono.git] / mcs / errors / cs0118-11.cs
1 // CS0118: `C' is a `type' but a `variable' was expected
2 // Line: 8
3
4 class C
5 {
6         public static void Main ()
7         {
8                 int i = (C) +1;
9         }
10 }