linux-packaging-mono/mcs/tests/gtest-591-lib.cs

15 lines
193 B
C#
Raw Normal View History

// Compiler options: -target:library
using System;
namespace A
{
public class B<T>
{
public abstract class C : System.IEquatable<C>
{
public abstract bool Equals (C other);
}
}
}