(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0646.cs
blob78b7f4e3c777ba42747875e4093ff2ce41954f60
1 // cs0646.cs : Cannot specify the DefaultMember attribute on a type containing an indexer
2 // Line : 8
4 using System;
5 using System.Reflection;
7 [DefaultMember ("Item")]
8 public class Foo {
10 string bar;
12 public static void Main ()
14 Console.WriteLine ("foo");
17 string this [int idx] {
18 get {
19 return "foo";
21 set {
22 bar = value;