Add missing </p> for xml text reader (monodoc make dist)
[mono.git] / mcs / errors / cs1501-12.cs
1 // CS1501: No overload for method `A.Foo' takes `1' arguments\r
2 // Line: 15\r
3 \r
4 public class A\r
5 {\r
6         public class Foo\r
7         {\r
8         }\r
9 }\r
10 \r
11 class Example\r
12 {\r
13         public void Main(string[] args)\r
14         {\r
15                 A a = new A.Foo ("test");  \r
16         }\r
17 }