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-08-17 23:15:26 +0400
committerMarek Safar <marek.safar@gmail.com>2010-08-18 16:32:30 +0400
commitd48018f03918b835396fc7b4614e8f324f873621 (patch)
tree4f06ecdf53681232f8f9790243fdece4ab43d491 /mcs/tests/gtest-530.cs
parent08b113d92b750fc6d958d25a5038d1f3d200429e (diff)
Defer checks until all base types are ready
Diffstat (limited to 'mcs/tests/gtest-530.cs')
-rw-r--r--mcs/tests/gtest-530.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/mcs/tests/gtest-530.cs b/mcs/tests/gtest-530.cs
new file mode 100644
index 00000000000..85d1fb6a512
--- /dev/null
+++ b/mcs/tests/gtest-530.cs
@@ -0,0 +1,25 @@
+class B : B2.IB
+{
+ public interface IA
+ {
+ }
+
+ public static void Main ()
+ {
+ }
+}
+
+class B2 : A
+{
+ public interface IB
+ {
+ }
+}
+
+class A : G<int>
+{
+}
+
+class G<T>
+{
+} \ No newline at end of file