2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0111-4.cs
blob5f3f7a382a0dc3376ef001b33be20cc9ffb00ec6
1 // cs0111-4.cs: `ErrorClass.get_Blah(int)' is already defined. Rename this member or use different parameter types
2 // Line: 8
4 using System.Runtime.CompilerServices;
5 class ErrorClass {
6 [IndexerName ("Blah")]
7 public int this [int a] {
8 get { return 1; }
11 public void get_Blah (int b) {}
13 public static void Main ()