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

cs1592.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2fbbbc15c4b1fbc86202b736fee255eb09993dc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs1592.cs: Badly formed XML in included comments file -- `there-is-no-such-file'
// Line: 12
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror

namespace Testing
{
   /// blah
   public class Test
   {
	// warning
	/// <include file='there-is-no-such-file' path='/foo/bar' />
	public void Baz (int x)
	{
	}
   }
}