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