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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0619-37.cs
blob
fac9707ea7be3c10267cbb1e3a764c132f2f8745
1
// CS0619-37: `ObsoleteEnum.value_B' is obsolete: `It's obsolete'
2
// Line: 16
3
4
using
System
;
5
6
enum
ObsoleteEnum
7
{
8
value_A
,
9
[
Obsolete
(
"It's obsolete"
,
true
)]
10
value_B
11
}
12
13
enum
E2
14
{
15
aa
=
ObsoleteEnum
.
value_A
,
16
bb
=
ObsoleteEnum
.
value_B
17
}