Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0704.cs
1 // CS0704: A nested type cannot be specified through a type parameter `T' 
2 // Line: 6
3
4 class G<T>
5 {
6         T.A x;
7 }