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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs1982-2.cs
blob
b57f1f534f41a578ef5020cc3e4d0463dfd964f2
1
// CS1982: An attribute argument cannot be dynamic expression
2
// Line: 6
3
4
using
System
;
5
6
[
A
((
dynamic
)
null
)]
7
public class
A
:
Attribute
8
{
9
public
A
(
Type arg
)
10
{
11
}
12
}