repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs1591-4.cs
blob
47cc2330bc5d22c8ed54ea7074bacc69f569ab6d
1
// CS1591: Missing XML comment for publicly visible type or member `Testing.Foo.Foo'
2
// Line: 12
3
// Compiler options: -doc:dummy.xml -warnaserror -warn:4
4
5
using
System
;
6
7
namespace
Testing
8
{
9
/// comment is here.
10
public enum
Foo
11
{
12
Foo
,
13
/// required for all enum members
14
Bar
15
}
16
}