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
tag rc1
[mcs.git]
/
errors
/
cs0619-49.cs
blob
d719f512c5c969e03a32f3648209c9c4a3cd1492
1
// cs0619-49.cs: `A.A(string[])' is obsolete: `!!!'
2
// Line: 12
3
4
class
A
:
System
.
Attribute
5
{
6
[
System
.
Obsolete
(
"!!!"
,
true
)]
7
public
A
(
string
[]
s
)
8
{
9
}
10
}
11
12
[
A
(
new string
[
0
])]
13
class
Obsolete
{
14
}