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>2003-04-07 01:31:49 +0400
committerMartin Baulig <martin@novell.com>2003-04-07 01:31:49 +0400
commitcd19ec807f51541bdc984b4fc5c6b75b691d50b3 (patch)
tree9112313546bbd54a37d0886c167e239f51d89c91 /mcs/tests/test-190.cs
parent12f129c9a93efea02c6ca804b2a6ae2390b294d4 (diff)
2003-04-06 Martin Baulig <martin@ximian.com>
* test-190.cs: New test. svn path=/trunk/mcs/; revision=13249
Diffstat (limited to 'mcs/tests/test-190.cs')
-rw-r--r--mcs/tests/test-190.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-190.cs b/mcs/tests/test-190.cs
new file mode 100644
index 00000000000..ab5e3b7b480
--- /dev/null
+++ b/mcs/tests/test-190.cs
@@ -0,0 +1,15 @@
+public class A {
+ private int var;
+}
+
+public class B: A {
+ public void foo() {
+ var = 1;
+ }
+}
+
+public class Cl {
+ public static void Main() {
+ // Nothing
+ }
+}