linux-packaging-mono/mcs/tests/test-anon-169.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

46 lines
683 B
C#

using System;
using System.Collections.Generic;
static class Test
{
public static int Main ()
{
var fs = new List<Func<int>> ();
foreach (int i in new List<int> () { 1, 2, 3 }) {
fs.Add (() => i);
}
int total = 0;
foreach (var i in fs) {
total += i ();
Console.WriteLine (i ());
}
if (total != 6)
return 1;
var fs2 = new List<Func<char>> ();
total = 0;
foreach (var i in fs2) {
total += i ();
Console.WriteLine (i ());
}
foreach (var i in "abcd") {
fs2.Add (() => i);
}
string concat = "";
foreach (var i in fs2) {
concat += i ();
Console.WriteLine (i ());
}
if (concat != "abcd")
return 2;
return 0;
}
}