Copied remotely
[mono.git] / mcs / errors / cs0126.cs
1 // cs0126: an object of type `int' is expected in the return statement
2 // Line: 7
3
4 class X {
5         int Y ()
6         {
7                 return;
8         }
9 }