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>2004-03-29 20:46:08 +0400
committerMarek Safar <marek.safar@gmail.com>2004-03-29 20:46:08 +0400
commitce6dfca587f29e770f3b3a13903f6de81fc26529 (patch)
treebb66b8de28dba6ec5d13ceddf781af2be030d21a /mcs/errors/cs0619-16.cs
parent4c611013876fb718d58df7bf64f230953eec3646 (diff)
2004-03-29 Marek Safar <marek.safar@seznam.cz>
* cs0029-3.cs, cs0173-2.cs, cs0619-{2-26}.cs, cs0672.cs: 29 new error tests. svn path=/trunk/mcs/; revision=24715
Diffstat (limited to 'mcs/errors/cs0619-16.cs')
-rw-r--r--mcs/errors/cs0619-16.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/cs0619-16.cs b/mcs/errors/cs0619-16.cs
new file mode 100644
index 00000000000..8452b97744a
--- /dev/null
+++ b/mcs/errors/cs0619-16.cs
@@ -0,0 +1,14 @@
+// cs0619.cs: 'Test_A.Test_A()' is obsolete: 'Causes an error'
+// Line: 13
+
+using System;
+public class Test_A
+{
+ [Obsolete ("Causes an error", true)]
+ public Test_A () {}
+}
+
+public class Test_B: Test_A
+{
+ public Test_B (): base () {}
+} \ No newline at end of file