[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0023-6.cs
blobfeb834f2036d8ba8f727644e8ec523f93c450b53
1 // CS0023: The `.' operator cannot be applied to operand of type `method group'
2 // Line: 9
4 public class App {
6 public static void Main() {}
8 SomeEnum SomeEnum() {
9 return SomeEnum.First;
14 enum SomeEnum { First, Second };