Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0246-18.cs
1 // CS0246: The type or namespace name `dynamic' could not be found. Are you missing an assembly reference?
2 // Line: 9
3 // Compiler options: -langversion:ISO-2
4
5 class C
6 {
7         public static void Main ()
8         {
9                 dynamic d = 9;
10         }
11 }