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

gtest-472.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5db66636a90a8a9f5ca15c332bdd531ec02bc0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class C<T>
{
	public virtual void CopyUnsafe(T[] value, params long[] fromIdx){}
	public virtual bool CopyUnsafe(T[] value, long fromIdx) { return true; }

	public virtual void CopyUnsafe(T[] value)
	{
		bool b = CopyUnsafe(value, 0);
	}
}

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