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 #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs1982-3.cs
blob
466f87ecd30e01a976bd59c243eb1048e4f93ea5
1
// CS1982: An attribute argument cannot be dynamic expression
2
// Line: 6
3
4
using
System
;
5
6
[
A
(
typeof
(
dynamic
[]))]
7
public class
A
:
Attribute
8
{
9
public
A
(
object
arg
)
10
{
11
}
12
}