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

test-xml-061.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce371ebfd88f653ee97d62896e7b138ee685a404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Compiler options: -doc:xml-061.xml /warnaserror /warn:4

class Test
{
	static void Main ()
	{
	}
}

///<summary>summary</summary>
public interface Interface
{
	///<summary>Problem!</summary>
	int this[int index]
	{
		get;
	}
}