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>2013-04-29 17:02:01 +0400
committerMarek Safar <marek.safar@gmail.com>2013-04-29 17:02:01 +0400
commite139ef1302ce5612f1e7d8de492bb7c491d697c2 (patch)
tree8554d1ed93fe04a5af4e5f309a82010d38da3c7c /mcs/tests/gtest-583.cs
parent3fe85ac0275c992d58352624c76f5aaabd73a240 (diff)
Don't try to inflate nested types of missing type. Fixes #11996
Diffstat (limited to 'mcs/tests/gtest-583.cs')
-rw-r--r--mcs/tests/gtest-583.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/tests/gtest-583.cs b/mcs/tests/gtest-583.cs
new file mode 100644
index 00000000000..83080ac333e
--- /dev/null
+++ b/mcs/tests/gtest-583.cs
@@ -0,0 +1,9 @@
+// Compiler options: -r:gtest-583-lib.dll
+
+public class Test
+{
+ public static void Main ()
+ {
+ new C<short> ();
+ }
+}