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
/
cs0641.cs
blob
cbf7536e71c1132d98d0f99545f06929a1f74768
1
// cs0641.cs: Attribute `System.AttributeUsageAttribute' is only valid on classes derived from System.Attribute
2
// Line: 6
3
4
using
System
;
5
6
[
AttributeUsage
(
AttributeTargets
.
All
)]
7
public class
A
8
{
9
}
10