[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0646.cs
blob989014659883433a36ba2ce08960aad299b63c41
1 // CS0646: Cannot specify the `DefaultMember' attribute on 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;