d3b5ee8f8af168cdbf75270858e9ccf949e7b52c
[mono.git] / mcs / errors / cs1590-3.cs
1 // Compiler options: -doc:xml-024.xml -warn:1 -warnaserror
2 // Invalid XML 'include' element; Missing 'file' attribute
3
4 namespace Testing
5 {
6    /// comment
7    public class Test
8    {
9         /// comment
10         public static void Main ()
11         {
12         }
13
14         /// <include path='/foo/bar' />
15         public void Bar (int x)
16         {
17         }
18    }
19 }
20