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>2014-07-03 13:35:28 +0400
committerMarek Safar <marek.safar@gmail.com>2014-07-03 19:50:40 +0400
commitea4d8490c72a3323b5faf0eea504f67d146fc5d0 (patch)
tree82faf357b63afbb268c6fa2b92163edbbadf44a2 /mcs/tests/test-671.cs
parent9b026032a36cb13486531224511763c2e26b0fb9 (diff)
[mcs] Methodgroup probing checks are not allowed
Diffstat (limited to 'mcs/tests/test-671.cs')
-rw-r--r--mcs/tests/test-671.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/test-671.cs b/mcs/tests/test-671.cs
index f6b992f384e..87395cdeb3e 100644
--- a/mcs/tests/test-671.cs
+++ b/mcs/tests/test-671.cs
@@ -9,7 +9,7 @@ class C
static bool Bar (object t)
{
- return Bar is object;
+ return t is object;
}
}