Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-236.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b47ed0b5ba19d5dae0b4008e4fe4f34e26a4b7a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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");
		}
	}
}