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

cs1587-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f66fc6039088dd26a460d4fa428428ed4727b07d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1587-4.cs: XML comment is not placed on a valid language element
// Line: 8
// Compiler options: -doc:dummy.xml -warnaserror -warn:2

using System;

/// invalid comment placed on namespace.
namespace TopNS
{
	class Foo
	{
	}
}