[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0118-15.cs
blob02efe523eeff74764de5bf9609dce761c9623eb9
1 // CS0118: `Foo<X>' is a `type' but a `variable' was expected
2 // Line: 12
4 public class Foo<T>
8 class X
10 static void Main ()
12 Foo<X> = new Foo<X> ();