[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0021-3.cs
blob00124a3fc9c819619344dcbc493a748fb2afa291
1 // CS0021: Cannot apply indexing with [] to an expression of type `G'
2 // Line: 8
4 public class Foo<G>
6 public static void Bar ()
8 int i = default (G)[0];