Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-350.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21550290a094223603469668314dce9df9864ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using x = System;

abstract class Foo<T> : x::IEquatable<T>
{
	public abstract bool Equals (T x);
}

public class C
{
	public static void Main ()
	{
	}
}