repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0619-28.cs
blob
ab2f3d922e62fb96f7a3f8c52f63986ef169c15a
1
// cs0619-28.cs: `D' is obsolete: `Do not use it'
2
// Line: 12
3
4
using
System
;
5
6
[
Obsolete
(
"Do not use it"
,
true
)]
7
delegate void
D
();
8
9
class
B
{
10
event
D e
;
11
}