Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1965.cs
1 // CS1965: Class `C' cannot derive from the dynamic type
2 // Line: 4
3
4 class C : dynamic
5 {
6 }