blob: db90d03eb0b4db267f3bcc0dce7bd9dbf95fb603 (
plain)
1
2
3
4
5
6
7
8
9
|
// CS1587: XML comment is not placed on a valid language element
// Line: 7
// Compiler options: -doc:dummy.xml -warnaserror -warn:2
using System;
[Flags]
/// invalid comment between attributes and type declaration.
enum Foo {
}
|