Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0646.cs
1 // CS0646: Cannot specify the `DefaultMember' attribute on 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