[xbuild] Add new reserved properties $(MSBuildThisFile*).
[mono.git] / mcs / errors / cs0021-3.cs
1 // CS0021: Cannot apply indexing with [] to an expression of type `G'
2 // Line: 5
3 public class Foo<G> {
4     public static void Bar() {
5         int i = default(G)[0];
6     }
7 }
8