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
2009-06-26 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0579-12.cs
blob
ebd5ad85c5a05a995c7c1752d9b6965c28e5363d
1
// CS0579: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
2
// Line: 12
3
4
5
using
System
;
6
7
partial class
C
8
{
9
[
Obsolete
(
"A"
)]
10
partial void
PartialMethod
();
11
[
Obsolete
(
"A"
)]
12
partial void
PartialMethod
()
13
{
14
}
15
}