error messages review
[mono.git] / mcs / errors / cs1592.cs
1 // cs1592.cs: Badly formed XML in included comments file -- `there-is-no-such-file'
2 // Line: 12
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
4
5 namespace Testing
6 {
7    /// blah
8    public class Test
9    {
10         // warning
11         /// <include file='there-is-no-such-file' path='/foo/bar' />
12         public void Baz (int x)
13         {
14         }
15    }
16 }
17