[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-partial-05.cs
blob877bfeba7867a8dad56dd49174d90a99266f02b5
1 using System;
2 using System.Collections.Generic;
4 public interface IC : IB
8 public partial interface IB : IEnumerable<char>
12 public partial interface IB : IA
16 public interface IA : IDisposable
20 class Driver
22 static void Foo<T> (T t) where T : IA
26 static void Main ()
28 IC i = null;
29 Foo<IC> (i);