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:
authorMiguel de Icaza <miguel@gnome.org>2003-04-19 01:02:36 +0400
committerMiguel de Icaza <miguel@gnome.org>2003-04-19 01:02:36 +0400
commitcec7845e677eae3a62e1b377fb43c7c249c7c847 (patch)
tree2d4ed780e145d3be2de8983a1ed03dc60b69fc62 /mcs/errors/cs0628.cs
parentfa1afa36217715fccea358c6e276e78a800398de (diff)
Add new error test
svn path=/trunk/mcs/; revision=13786
Diffstat (limited to 'mcs/errors/cs0628.cs')
-rw-r--r--mcs/errors/cs0628.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/errors/cs0628.cs b/mcs/errors/cs0628.cs
new file mode 100644
index 00000000000..00c3dc5d11a
--- /dev/null
+++ b/mcs/errors/cs0628.cs
@@ -0,0 +1,6 @@
+// cs0628.cs: protected member in sealed class
+// Line:4
+sealed class D {
+ protected int a;
+ static void Main () {}
+}