Bump mono-extensions to fix build break (#5677)
[mono.git] / mcs / errors / cs0127.cs
1 // CS0127: `X.fn()': A return keyword must not be followed by any expression when method returns void
2 // Line: 6
3
4 class X {
5         void fn ()
6         {
7                 return 1;
8         }
9 }
10