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
/
cs0579-3.cs
blob
0a1ffe1b8763a0831d791c0504dbe4ca95a3ed57
1
// cs0579.cs: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
2
// Line : 8
3
4
using
System
;
5
6
class
MainClass
{
7
[
Obsolete
]
8
[
Obsolete
]
9
static void
Main
()
10
{
11
}
12
}