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