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-07 18:26:00 +0400
committerMarek Safar <marek.safar@gmail.com>2010-10-07 18:28:04 +0400
commitd900315aeba415231ca22566f2c9628f4afdc2e6 (patch)
tree7dd92abba56372e1d1dbab388c0660ee361f20ad /mcs/tests/gtest-451.cs
parentb0ffa90c3bd221d69db5976c69e18142ec9458dc (diff)
[644507] Don't use nested type cache until declaring type is setup.
Diffstat (limited to 'mcs/tests/gtest-451.cs')
-rw-r--r--mcs/tests/gtest-451.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/tests/gtest-451.cs b/mcs/tests/gtest-451.cs
new file mode 100644
index 00000000000..d9939112814
--- /dev/null
+++ b/mcs/tests/gtest-451.cs
@@ -0,0 +1,10 @@
+// Compiler options: -r:gtest-451-lib.dll
+
+public class Test
+{
+ public static int Main ()
+ {
+ var a = new A<int>.N1 ();
+ return a.Value.Foo ();
+ }
+}