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-39.cs
blob
0f30a0d600d75143315c508e163fd3218bac14b4
1
// CS0619-39: `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
}