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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0619-3.cs
blob
a031e744417cc13198a6eccc3cb037ab8e1b7cb0
1
// cs0619-3.cs: `ObsoleteEnum' is obsolete: `Yeah, is obsolete'
2
// Line: 13
3
4
using
System
;
5
6
[
Obsolete
(
"Yeah, is obsolete"
,
true
)]
7
enum
ObsoleteEnum
8
{
9
}
10
11
interface
Ex
12
{
13
ObsoleteEnum
Foo
();
14
}