[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0681.cs
1 // CS0681: The modifier 'abstract' is not valid on fields. Try using a property instead
2 // Line: 5
3
4 class X {
5         abstract const int name = 3;
6
7         static void Main () {}
8 }