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

cs1501-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1e2643488b24f2610547a30363f8c3789343406 (plain)
1
2
3
4
5
6
7
8
// cs1501-7.cs: No overload for method `A' takes `1' arguments
// Line: 6

public class A {
    A[] test = {
        new A("test")
    };
}