[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0308-2.cs
blob2979fcfba9154873ff73b43426d1b499334bc6e4
1 // CS0308: The non-generic type `NamingContext' cannot be used with the type arguments
2 // Line: 6
4 class Program
6 static NamingContext<int> Lookup ()
8 return null;
12 class NamingContext