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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0619-40.cs
blob
c049ffd9e204b5c08f323cae79ec741e89f1197f
1
// cs0619-40.cs: `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
}