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

gtest-iter-04.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 377e1b14390d045c4f1b979bd40aa8e0a44c022d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;

public abstract class TestClass
{
	public abstract void ToString (object obj);

	public IEnumerable<object> TestEnumerator ()
	{
		ToString (null);
		yield break;
	}

	public void Test ()
	{
		ToString (null);
	}
}

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