a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
285 B
C#
22 lines
285 B
C#
using System;
|
|
using System.Collections;
|
|
|
|
class T {
|
|
struct C : IEnumerable {
|
|
public IEnumerator GetEnumerator ()
|
|
{
|
|
return new ArrayList ().GetEnumerator ();
|
|
}
|
|
}
|
|
|
|
static C X ()
|
|
{
|
|
return new C ();
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
foreach (object o in X ())
|
|
;
|
|
}
|
|
} |