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-06-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0612.cs
blob
33144f917915b1740e9cd2f488554f07191cf4ed
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
}