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:
authorMarek Safar <marek.safar@gmail.com>2009-07-16 19:57:14 +0400
committerMarek Safar <marek.safar@gmail.com>2009-07-16 19:57:14 +0400
commit4071a7b6180c744af6100983138bef34999ae51f (patch)
tree0124ea9fd0aa12056ffce810cc67a32fe6db198c /mcs/errors
parentc81246520d428595c0fda064df77d932ecf66de3 (diff)
New test.
svn path=/trunk/mcs/; revision=138060
Diffstat (limited to 'mcs/errors')
-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) {
+ }
+ }
+}