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-09-10 14:36:24 +0400
committerMarek Safar <marek.safar@gmail.com>2010-09-10 14:37:29 +0400
commit2bded0cb1ea009f245cafa4f541185718ed63ada (patch)
treea161ca6fa81b2c66d33340c8d0350b43cf02615d /mcs/tests/gtest-536.cs
parent667f95b8654d6d816bc71ec525b2a09a3f0c91f6 (diff)
When doing member access left side lookup the arity value is actually the exact value.
Diffstat (limited to 'mcs/tests/gtest-536.cs')
-rw-r--r--mcs/tests/gtest-536.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/mcs/tests/gtest-536.cs b/mcs/tests/gtest-536.cs
new file mode 100644
index 00000000000..64c54cd6740
--- /dev/null
+++ b/mcs/tests/gtest-536.cs
@@ -0,0 +1,21 @@
+using System;
+
+public class Test
+{
+
+ public sealed class Expression<TDelegate>
+ {
+ }
+
+ public class Expression
+ {
+ public static void Test ()
+ {
+ }
+ }
+
+ static void Main ()
+ {
+ Expression.Test ();
+ }
+}