2002-07-06 Andrew Birkett <adb@tardis.ed.ac.uk>
[mono.git] / mcs / errors / cs0646.cs
1 // cs0646.cs : Cannot specify the DefaultMember attribute on  a type containing an indexer
2 // Line : 8
3
4 using System;
5 using System.Reflection;
6
7 [DefaultMember ("Item")]
8 public class Foo {
9
10         string bar;
11         
12         public static void Main ()
13         {
14                 Console.WriteLine ("foo");
15         }
16
17         string this [int idx] {
18                 get {
19                         return "foo";
20                 }
21                 set {
22                         bar = value;
23                 }
24         }
25 }
26