2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1729-7.cs
blobf3164a5537dacdfc7a66128741081a4f2c3b2df4
1 // CS1729: The type `A' does not contain a constructor that takes `1' arguments
2 // Line: 6
4 public class A {
5 A[] test = {
6 new A("test")
7 };