(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0127.cs
blob2a72c6a1a3dd4554e7d1c615ca91bc97927f063d
1 // cs0127.cs: Since 'X.fn' returns void, a return keyword must not be followed by an object expression
2 // Line: 6
3 class X {
4 void fn ()
6 return 1;