2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0127.cs
blob77e7224fec8f7acc7ebf96ea9697d637ae008fab
1 // CS0127: `X.fn()': A return keyword must not be followed by any expression when method returns void
2 // Line: 6
4 class X {
5 void fn ()
7 return 1;