cleol
[mcs.git] / errors / dcs1969.cs
blob4b84c53ce8664a6ea79733025116fe6b205336a2
1 // CS1969: Dynamic operation cannot be compiled without `Microsoft.CSharp.dll' assembly reference
2 // Line: 19
3 // Compiler options: -noconfig
5 using System;
7 namespace System.Runtime.CompilerServices
9 class DynamicAttribute : Attribute
14 class C
16 public static void Main ()
18 dynamic d = null;
19 d++;