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>2010-03-02 12:33:08 +0300
committerMarek Safar <marek.safar@gmail.com>2010-03-02 12:33:08 +0300
commit512b4aa67390e2fe06c6d3ca1a19ab7f920545a6 (patch)
treed820934daed88376ebac6ca3263c7435900633e1 /mcs/tests/test-741.cs
parent4159100b712bf563275ac2a618856dda04be97dd (diff)
New test.
svn path=/trunk/mcs/; revision=152814
Diffstat (limited to 'mcs/tests/test-741.cs')
-rw-r--r--mcs/tests/test-741.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-741.cs b/mcs/tests/test-741.cs
new file mode 100644
index 00000000000..50326261c2f
--- /dev/null
+++ b/mcs/tests/test-741.cs
@@ -0,0 +1,15 @@
+// Compiler options: -r:test-741-lib.dll
+
+class Test
+{
+ void test ()
+ {
+ IFoo f = null;
+ int v = f.Prop;
+ f.NestedProp = 4;
+ }
+
+ public static void Main ()
+ {
+ }
+}