[eglib] In AIX/generic POSIX, handle null addresses better (#17892)
[mono-project.git] / mcs / tests / gtest-561-lib.cs
blob315af56f47606d646123db5cbfd544be9b0d37ad
1 // Compiler options: -t:library
3 using System.Collections.Generic;
5 public interface I
7 void Foo<T> (List<T> arg) where T : A;
10 public class A : AB, IB
14 public abstract class AB : IC
18 public interface IB
22 public interface IC