Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1590-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c96df5202f812bc174c0c2d73669467ecdf3f12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Compiler options: -doc:xml-024.xml -warn:1 -warnaserror
// Invalid XML 'include' element; Missing 'path' attribute

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