[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs0681.cs
blob0c3a67481b4c2cab7cb9258d44177bfb769cf22b
1 // CS0681: The modifier 'abstract' is not valid on fields. Try using a property instead
2 // Line: 5
4 class X {
5 abstract const int name = 3;
7 static void Main () {}