repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0619-49.cs
blob
aca6b307f9785445d2b947f8ad7d476b284b7bba
1
// CS0619-49: `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
}