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: c2f2bd670b0af9e8016885a53bbd02f41fc39fb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: -doc:dummy.xml -warn:1 -warnaserror
// Badly formed XML in included comments file -- 'there-is-no-such-file'

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