a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
310 B
C#
25 lines
310 B
C#
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 ()
|
|
{
|
|
}
|
|
} |