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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0612.cs
blob
a9dbb2680784ed01988632a0ea81de4a27a6f1fb
1
// CS0612: `A.Value' is obsolete
2
// Line: 13
3
// Compiler options: -warnaserror
4
5
class
A
{
6
[
System
.
Obsolete
]
7
int
Value
{
8
set
{
9
}
10
}
11
12
public
A
() {
13
Value
=
4
;
14
}
15
}