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-03-13 13:32:11 +0400
committerMarek Safar <marek.safar@gmail.com>2014-03-13 13:33:15 +0400
commit060c0c67c088c3a61d7f2960843745d092f0e4a1 (patch)
treeaac4451abe99071d90bd23a378a7b56decb95692 /mcs/tests/gtest-606-lib.cs
parentf74f34db43be09be26cae5612ca66b80312909d6 (diff)
[mcs] Ignore import failures for private types used in private structs
Diffstat (limited to 'mcs/tests/gtest-606-lib.cs')
-rw-r--r--mcs/tests/gtest-606-lib.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/gtest-606-lib.cs b/mcs/tests/gtest-606-lib.cs
new file mode 100644
index 00000000000..b4679ab0da6
--- /dev/null
+++ b/mcs/tests/gtest-606-lib.cs
@@ -0,0 +1,18 @@
+// Compiler options: -t:library
+
+using System.Collections.Generic;
+
+public sealed class SD<K, V>
+{
+ public struct S
+ {
+ public struct E
+ {
+ private Stack<A> s;
+ }
+ }
+
+ private class A
+ {
+ }
+} \ No newline at end of file