Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

30 lines
381 B
C#

// CS1501: No overload for method `Select' takes `1' arguments
// Line: 17
using System;
class TestA
{
public string value;
public TestA (string value)
{
this.value = value;
}
public string Select (int i, Func<TestA, TestA> f)
{
return value;
}
}
public class M
{
static void Main ()
{
var v = new TestA ("Oh yes");
string foo = from a in v select a;
}
}