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
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0619-9.cs
blob
9372e999a29f3a18b444442ed31aaa9bf0ca2112
1
// cs0619-9.cs: `ObsoleteInterface' is obsolete: `'
2
// Line: 11
3
4
using
System
;
5
6
[
Obsolete
(
""
,
true
)]
7
interface
ObsoleteInterface
8
{
9
}
10
11
delegate
ObsoleteInterface
@
delegate
();