summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1587-7.cs
blob: 7cdadb64e9134efac7fe76a22a77acc9a86085a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1587: XML comment is not placed on a valid language element
// Line: 10
// Compiler options: -doc:dummy.xml -warnaserror -warn:2

using System;

namespace TopNS
{
/// invalid comment on using alias directive inside namespace.
using Hoge = System.Xml.XmlDocument;

	enum Foo {
	}
}