Update
[mono.git] / mcs / errors / gcs0021.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