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>2017-01-02 21:10:01 +0300
committerMarek Safar <marek.safar@gmail.com>2017-01-02 21:12:13 +0300
commit19dd86f8095617436b0ea7aed05b82a593ae082b (patch)
treeb72481997189f638ecddaa1f740ddbd623a32132 /mcs/tests/test-934.cs
parent676c45bd3ed5dc3dd9fdafd6f28208a6a2ca59b8 (diff)
[mcs] Disable more array interpolation on user code. Fixes #51166
Diffstat (limited to 'mcs/tests/test-934.cs')
-rw-r--r--mcs/tests/test-934.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mcs/tests/test-934.cs b/mcs/tests/test-934.cs
index ba464e35e49..62b300d6054 100644
--- a/mcs/tests/test-934.cs
+++ b/mcs/tests/test-934.cs
@@ -10,6 +10,7 @@ class X
if (ReferenceEquals (a, b))
return 2;
+ a = new byte[0];
b = new byte[0];
if (a.Equals (b))
return 3;