Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0701-3.cs
1 // CS0701: `string' is not a valid constraint. A constraint must be an interface, a non-sealed class or a type parameter
2 // Line: 4
3
4 class Foo<T> where T : string
5 {
6 }