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
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0612-3.cs
blob
f52b3566cdc5add24023e8c64c83e6072a8e534c
1
// cs0612.cs: `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
}