Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0621.cs
1 // CS0621: `X.method()': virtual or abstract members cannot be private
2 // Line:
3 class X {
4         virtual void method () {}
5 }