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: c6d288eeba1bcf3d26d682d6e858abd00fffc481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs1590-2.cs: 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 ()
	{
	}
   }
}