2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-163.cs
blob5352bb455ae37602a252c4d390b11ea48c99486d
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
5 public class Foo<T>
7 public IEnumerator<T> getEnumerator (int arg)
9 if (arg == 1) {
10 int foo = arg;
11 Console.WriteLine (foo);
14 if (arg == 2) {
15 int foo = arg;
16 Console.WriteLine (foo);
19 yield break;
23 class X
25 static void Main ()
26 { }