[System.Core]: Minor API fix in the Non-DLR version of System.Linq.Expressions.
[mono.git] / mcs / errors / cs0418-2.cs
1 // CS0418: `TestClass': an abstract class cannot be sealed or static
2 // Line: 4
3
4 public abstract static class TestClass
5 {
6 }