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

public class Foo<G>
{
	public static void Bar ()
	{
		int i = default (G)[0];
	}
}