2009-07-11 Michael Barker <mike@middlesoft.co.uk>
[mono.git] / mcs / errors / cs0246-18.cs
1 // CS0246: The type or namespace name `dynamic' could not be found. Are you missing a using directive or 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 }