Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mcs/errors/cs0246-19.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/errors/cs0246-19.cs b/mcs/errors/cs0246-19.cs
new file mode 100644
index 00000000000..23feece9ae6
--- /dev/null
+++ b/mcs/errors/cs0246-19.cs
@@ -0,0 +1,16 @@
+// CS0246: The type or namespace name `aGgt' could not be found. Are you missing a using directive or an assembly reference?
+// Line: 13
+
+using System;
+
+class C
+{
+ public static void Main ()
+ {
+ try {
+ throw null;
+ } catch (ArgumentException) {
+ } catch (aGgt) {
+ }
+ }
+}