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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0181-4.cs
blob
80ed5629a9f7d50b4ad8b496afda0bb0f7bd666e
1
// CS0181: Attribute constructor parameter has type `System.Attribute', which is not a valid attribute parameter type
2
// Line: 6
3
4
using
System
;
5
6
[
BAttribute
(
null
)]
7
public class
BAttribute
:
Attribute
8
{
9
public
BAttribute
(
Attribute a
)
10
{
11
}
12
13
public static void
Main
()
14
{
15
}
16
}