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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0619-40.cs
blob
607fe4b77d77e22008b5d68e9f48e217549f9011
1
// CS0619-40: `C.ob' is obsolete: `ooo'
2
// Line: 13
3
4
using
System
;
5
6
class
C
7
{
8
[
Obsolete
(
"ooo"
,
true
)]
9
const int
ob
=
4
;
10
11
public void
Test
(
int
arg
)
12
{
13
switch
(
arg
) {
14
case
ob
:
return
;
15
}
16
}
17
}