summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1590-2.cs
blob: 33d02f06ecc924ca9e9b842c21c2bd28f52a7368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS1590: Invalid XML `include' element. Missing `path' attribute
// Line: 11
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror

namespace Testing
{
   /// comment
   public class Test
   {
	/// <include file='a' />
	public static void Main ()
	{
	}
   }
}