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
/
cs0619-3.cs
blob
2d00b646a3088dd1b2579f44916cfe025d320a4e
1
// CS0619: `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
}