2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1729-12.cs
blobc056b4135df7ad68980bf373404b7cf95ce635df
1 // CS1729: The type `A.Foo' does not contain a constructor that takes `1' arguments
2 // Line: 15
4 public class A
6 public class Foo
11 class Example
13 public void Main(string[] args)
15 A a = new A.Foo ("test");