Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1729-12.cs
1 // CS1729: The type `A.Foo' does not contain a constructor that takes `1' arguments
2 // Line: 15
3
4 public class A
5 {
6         public class Foo
7         {
8         }
9 }
10
11 class Example
12 {
13         public void Main(string[] args)
14         {
15                 A a = new A.Foo ("test");  
16         }
17 }