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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs1969.cs
blob
4b84c53ce8664a6ea79733025116fe6b205336a2
1
// CS1969: Dynamic operation cannot be compiled without `Microsoft.CSharp.dll' assembly reference
2
// Line: 19
3
// Compiler options: -noconfig
4
5
using
System
;
6
7
namespace
System
.
Runtime
.
CompilerServices
8
{
9
class
DynamicAttribute
:
Attribute
10
{
11
}
12
}
13
14
class
C
15
{
16
public static void
Main
()
17
{
18
dynamic
d
=
null
;
19
d
++;
20
}
21
}