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-10-27 19:59:12 +0400
committerMarek Safar <marek.safar@gmail.com>2010-10-28 16:44:31 +0400
commit304f7d04b2cb6d552fbacb2f9f63727d8a626e1a (patch)
tree9f07745fbdcf1f35c0d8a02bd668a312f129dc4f /mcs/tests/dtest-010.cs
parentb2b95ef13769d2487014ca110923d3e79a76f90e (diff)
Implement type inference of dynamic arguments used as unknown types
Diffstat (limited to 'mcs/tests/dtest-010.cs')
-rw-r--r--mcs/tests/dtest-010.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/mcs/tests/dtest-010.cs b/mcs/tests/dtest-010.cs
index c9ca7890112..e38e82d9e48 100644
--- a/mcs/tests/dtest-010.cs
+++ b/mcs/tests/dtest-010.cs
@@ -21,9 +21,8 @@ class C
if (A.Test<dynamic> (d, o).TestCall () != 1)
return 1;
- // FIXME: Very tricky, I not sure what to do for now
- //if (A.Test (d, o).TestCall () != 1)
- // return 1;
+ if (A.Test (d, o).TestCall () != 1)
+ return 2;
return 0;
}