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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0619-39.cs
blob
a74fb3d141bffcabbc780c79aa5ab0a6751a5a2a
1
// cs0619-39.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 int
Prop
{
12
get
{
13
return
ob
;
14
}
15
}
16
}