2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-etree-13.cs
blobc639766a89fbc1813bcb759aaea0460b7fc31789
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Linq.Expressions;
6 class Program
8 static int Main ()
10 foreach (int o in Test<bool> (1)) {
13 return 0;
16 static IEnumerable<int> Test<T> (int i)
18 Expression<Func<int>> e = () => i;
19 yield return 1;