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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0619-48.cs
blob
3c0f15168bb855426c6de50535876af6b6fba179
1
// cs0619-48.cs: `A.Prop' is obsolete: `!!!'
2
// Line: 13
3
4
class
A
:
System
.
Attribute
5
{
6
[
System
.
Obsolete
(
"!!!"
,
true
)]
7
public string
Prop
{
8
set
{ }
9
get
{ return ""; }
10
}
11
}
12
13
[
A
(
Prop
=
"System.String.Empty"
)]
14
class
Obsolete
{
15
}