[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0102-18.cs
blob98bace554efe3195ef1ea67d4e1447cd351a0ee6
1 // CS0102: The type `X<T>' already contains a definition for `T'
2 // Line: 11
4 class X <T> {
5 int T;
8 class W {
9 static void Main () {}