Files
linux-packaging-mono/mcs/errors/cs0681.cs

9 lines
167 B
C#
Raw Normal View History

// CS0681: The modifier 'abstract' is not valid on fields. Try using a property instead
// Line: 5
class X {
abstract const int name = 3;
static void Main () {}
}