Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0023-6.cs
1 // CS0023: The `.' operator cannot be applied to operand of type `method group'
2 // Line: 9
3
4 public class App {
5
6   public static void Main() {}
7
8   SomeEnum SomeEnum() {
9     return SomeEnum.First;
10   }
11
12 }
13
14 enum SomeEnum { First, Second };