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
Warnings cleanup
[mcs.git]
/
errors
/
cs0579-8.cs
blob
f0cd0faf6b69058c31145a1d7c20fc24bfb2979d
1
// cs0579.cs: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
2
// Line : 17
3
4
using
System
;
5
6
[
AttributeUsage
(
AttributeTargets
.
ReturnValue
)]
7
public class
ReturnAttribute
:
Attribute
8
{
9
public
ReturnAttribute
()
10
{
11
}
12
}
13
14
class
MainClass
{
15
[
Obsolete
]
16
[
return
:
Return
]
17
[
Obsolete
]
18
static void
Main
()
19
{
20
}
21
}