[arm64] Add the full neon regs to the context
[mono.git] / mcs / errors / cs1969.cs
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 }