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>2015-02-11 11:20:29 +0300
committerMarek Safar <marek.safar@gmail.com>2015-02-11 11:21:20 +0300
commitec2e126dfd861534ec08fe0d8055a0e359065c0f (patch)
tree0636cceda900813a4af848a38148c3dd7658b8dd /mcs/tests/gtest-629.cs
parentd07822286c01a072a36f8cfd678abb99b41e27f3 (diff)
[mcs] Additional fix for #26892
Diffstat (limited to 'mcs/tests/gtest-629.cs')
-rw-r--r--mcs/tests/gtest-629.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mcs/tests/gtest-629.cs b/mcs/tests/gtest-629.cs
index 7ca06620a4f..755222782a5 100644
--- a/mcs/tests/gtest-629.cs
+++ b/mcs/tests/gtest-629.cs
@@ -11,5 +11,10 @@ public class Program
fixed (char *c = (string)list[0]) {
}
+
+ var list2 = new List<object> () { null };
+ fixed (byte* p = (byte[])list2[0]) {
+ }
+
}
} \ No newline at end of file