Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git] / mcs / tests / gtest-581-lib.cs
blobbb1d7a3f5425f628fc303c5edb3bb1370174bbd7
1 // Compiler options: -t:library
3 public interface IA<T>
7 public interface IB<T>
11 public abstract class A : IA<A>, IB<A>
15 public abstract class B : A, IA<B>, IB<B>, IB<C>
19 public sealed class C : B, IA<C>