summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1729-7.cs
blob: f3164a5537dacdfc7a66128741081a4f2c3b2df4 (plain)
1
2
3
4
5
6
7
8
// CS1729: The type `A' does not contain a constructor that takes `1' arguments
// Line: 6

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