Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0021.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c2ff6b192158bd00ceacc5388030ce393bd9b2d (plain)
1
2
3
4
5
6
7
8
// CS0021: Cannot apply indexing with [] to an expression of type `G'
// Line: 5
public class Foo<G> {
    public static void Bar() {
        int i = default(G)[0];
    }
}