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>2011-03-21 20:24:40 +0300
committerMarek Safar <marek.safar@gmail.com>2011-03-21 20:24:40 +0300
commitd4e263bb6f1f781d780f380f4cc3deca0a3718bf (patch)
tree5ef7b43e4984e219c089fa7f85686581e64ade9d /mcs/tests/gtest-553-lib.cs
parent4129a759b6aaeca5a9739e909dab8e9e04e2cf2d (diff)
[676129] Don't add non-imported private types into inflated cache
Diffstat (limited to 'mcs/tests/gtest-553-lib.cs')
-rw-r--r--mcs/tests/gtest-553-lib.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/mcs/tests/gtest-553-lib.cs b/mcs/tests/gtest-553-lib.cs
new file mode 100644
index 00000000000..b9a1f32ae52
--- /dev/null
+++ b/mcs/tests/gtest-553-lib.cs
@@ -0,0 +1,23 @@
+// Compiler options: -t:library
+
+public class A
+{
+ public class C<T> : IA
+ {
+ }
+
+ private interface IA
+ {
+ }
+}
+
+public class B
+{
+ public class C<T> : IA<T>
+ {
+ }
+
+ private interface IA<T>
+ {
+ }
+}