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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1591-5.cs
blob
d0c4088359e96a6e264f664958d11959786f4d88
1
// CS1591: Missing XML comment for publicly visible type or member `Testing.MyDelegate'
2
// Line: 9
3
// Compiler options: -doc:dummy.xml -warnaserror -warn:4
4
5
using
System
;
6
7
namespace
Testing
8
{
9
public delegate void
MyDelegate
(
object
o
,
EventArgs e
);
10
}