Updated with review feedback.
[mono.git] / mcs / errors / cs1729-7.cs
1 // CS1729: The type `A' does not contain a constructor that takes `1' arguments
2 // Line: 6
3
4 public class A {
5     A[] test = {
6         new A("test")
7     };
8 }