2007-10-19 Nagappan A <anagappan@novell.com>
[mono.git] / mcs / errors / cs0126.cs
1 // cs0126.cs: 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 }