blob: 4b84c53ce8664a6ea79733025116fe6b205336a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// CS1969: Dynamic operation cannot be compiled without `Microsoft.CSharp.dll' assembly reference
// Line: 19
// Compiler options: -noconfig
using System;
namespace System.Runtime.CompilerServices
{
class DynamicAttribute : Attribute
{
}
}
class C
{
public static void Main ()
{
dynamic d = null;
d++;
}
}
|