Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1962.cs
1 // CS1962: The typeof operator cannot be used on the dynamic type
2 // Line: 8
3
4 class C
5 {
6         public static void Main ()
7         {
8                 object t = typeof (dynamic);
9         }
10 }