summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0102-19.cs
blob: d01e3f2c7c2408461fb15d50df1b2f2ac4a0f869 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0102: The type `C' already contains a definition for `get_Foo'
// Line: 9

class C
{
	int Foo {
		get { }
	}
	int get_Foo;
}