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:
authorMartin Baulig <martin@novell.com>2004-05-31 01:32:23 +0400
committerMartin Baulig <martin@novell.com>2004-05-31 01:32:23 +0400
commitc69e5cf3dfbb42a8d1f097f5877d1904bcdd9ded (patch)
tree1626c688b53c283556717e10443e891ba42af039 /mcs/tests/test-265.cs
parent88c51c34b572d5045e558ed67eda8b0fdb572730 (diff)
Oooops, forgot to add this.
svn path=/trunk/mcs/; revision=28509
Diffstat (limited to 'mcs/tests/test-265.cs')
-rw-r--r--mcs/tests/test-265.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/mcs/tests/test-265.cs b/mcs/tests/test-265.cs
new file mode 100644
index 00000000000..d58107ebb6e
--- /dev/null
+++ b/mcs/tests/test-265.cs
@@ -0,0 +1,19 @@
+using System;
+
+internal class ClassFormatError
+{
+ internal ClassFormatError(string msg, params object[] p)
+ {
+ }
+
+ static void Main ()
+ { }
+}
+
+internal class UnsupportedClassVersionError : ClassFormatError
+{
+ internal UnsupportedClassVersionError(string msg)
+ : base(msg)
+ {
+ }
+}