Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

26 lines
549 B
C#

// Bug #56300
using System;
using System.Collections;
namespace Tests
{
public interface IIndexer { object this[int index] { get; set; } }
public class Test : IIndexer
{
object[] InnerList;
object IIndexer.this[int index] {
get { return InnerList[index]; }
set { InnerList[index] = value; }
}
public static void Main() {
if (Attribute.GetCustomAttribute(
typeof(Test),
typeof(System.Reflection.DefaultMemberAttribute)) != null)
throw new Exception("Class 'Test' has a DefaultMemberAttribute");
}
}
}