copying the latest Sys.Web.Services from trunk.
[mono.git] / mcs / errors / cs1590-2.cs
1 // Compiler options: -doc:xml-024.xml -warn:1 -warnaserror
2 // Invalid XML 'include' element; Missing 'path' attribute
3
4 namespace Testing
5 {
6    /// comment
7    public class Test
8    {
9         /// <include file='a' />
10         public static void Main ()
11         {
12         }
13    }
14 }
15