[w32file] Remove dead code
[mono.git] / mcs / errors / cs0126.cs
1 // CS0126: An object of a type convertible to `int' is required for the return statement
2 // Line: 7
3
4 class X {
5         int Y ()
6         {
7                 return;
8         }
9 }