[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0717-2.cs
blobf64faa3496709206fb5aa1e54cff652d54af12e8
1 // CS0717: `System.Console' is not a valid constraint. Static classes cannot be used as constraints
2 // Line: 6
4 abstract class C
6 public abstract void Foo<U> () where U : System.Console;