linux-packaging-mono/mcs/tests/test-iter-12.cs

12 lines
148 B
C#
Raw Normal View History

class X {
System.Collections.IEnumerable a ()
{
lock (this){
yield return "a";
yield return "b";
}
}
public static void Main () {}
}