9 lines
157 B
C#
Raw Normal View History

// CS1729: The type `A' does not contain a constructor that takes `1' arguments
// Line: 6
public class A {
A[] test = {
new A("test")
};
}