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-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0619-6.cs
blob
9272e236602d864ed071de74d23f9c355c6f133a
1
// cs0619-6.cs: `A._value' is obsolete: `Do not use it'
2
// Line: 9
3
4
class
A
{
5
[
System
.
Obsolete
(
"Do not use it"
,
true
)]
6
int
_value
;
7
8
public
A
() {
9
_value
=
4
;
10
}
11
}