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