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.cs
blob
f04342c4a8bd5a874e9d793a0a7169e5de4e44af
1
// CS0181: Attribute constructor parameter has type `int[,]', which is not a valid attribute parameter type
2
// Line: 13
3
4
using
System
;
5
6
class
TestAttribute
:
Attribute
7
{
8
public
TestAttribute
(
int
[,]
i
) {}
9
}
10
11
public class
E
12
{
13
[
Test
(
null
)]
14
public void
Method
() {}
15
}