summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0021-4.cs
blob: 7fd7405c82b641f25731bdeaa8f31ee7b74886ec (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0021: Cannot apply indexing with [] to an expression of type `method group'
// Line: 

class X
{
	public void Foo ()
	{
		object baz = Foo [0];
	}
}