[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0246-19.cs
blobfe495d39b137527ddffaab2515ee5b7558dd86d6
1 // CS0246: The type or namespace name `aGgt' could not be found. Are you missing an assembly reference?
2 // Line: 13
4 using System;
6 class C
8 public static void Main ()
10 try {
11 throw null;
12 } catch (ArgumentException) {
13 } catch (aGgt) {