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>2007-12-28 19:40:11 +0300
committerMarek Safar <marek.safar@gmail.com>2007-12-28 19:40:11 +0300
commitf8280dca224c36fe8fdf15f30aff09a528f9f11a (patch)
tree9ff699a936624f64db650d2afc0ffee71e15303b /mcs/tests/test-605.cs
parenta5f7e1a9f051fd8a970542676b1ce942858c1974 (diff)
2007-12-27 Marek Safar <marek.safar@gmail.com>
A test for bug #338273 svn path=/trunk/mcs/; revision=91992
Diffstat (limited to 'mcs/tests/test-605.cs')
-rw-r--r--mcs/tests/test-605.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/mcs/tests/test-605.cs b/mcs/tests/test-605.cs
new file mode 100644
index 00000000000..600695d6233
--- /dev/null
+++ b/mcs/tests/test-605.cs
@@ -0,0 +1,19 @@
+class TestA
+{
+ public virtual string Method
+ {
+ get { return null; }
+ }
+}
+
+class TestB : TestA
+{
+ private string Method
+ {
+ get { return null; }
+ }
+
+ public static void Main ()
+ {
+ }
+} \ No newline at end of file