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>2009-11-16 19:44:30 +0300
committerMarek Safar <marek.safar@gmail.com>2009-11-16 19:44:30 +0300
commit5bc3dc720f591d90f6be086aa58c6856de3c5172 (patch)
tree0bbf6e0ab31bc00711bd094409a21034b8c75c5e /mcs/tests/dtest-006.cs
parent5950656f83aaec5752e79ece3bd9b9d564c85537 (diff)
Enable fixed tests.
svn path=/trunk/mcs/; revision=146273
Diffstat (limited to 'mcs/tests/dtest-006.cs')
-rw-r--r--mcs/tests/dtest-006.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/tests/dtest-006.cs b/mcs/tests/dtest-006.cs
index 2cf6d8857ad..e43d80d8572 100644
--- a/mcs/tests/dtest-006.cs
+++ b/mcs/tests/dtest-006.cs
@@ -692,9 +692,9 @@ class Tester
var v = new [] { d, 1 };
Assert ("aa", v [0], "#7");
- // TODO: Runtime bug #555013
- //dynamic [,] a = new dynamic [,] { { 1, 2 }, { 'b', 'x' } };
- //Assert ("aa", a [0, 1], "#8");
+ dynamic [,] a = new dynamic [,] { { 1, 2 }, { 'b', 'x' } };
+ Assert (2, a [0, 1], "#8");
+ Assert ('x', a [1, 1], "#8a");
}
int ConvertImplicitReturnTest ()