Xamarin Public Jenkins (auto-signing) 804b15604f Imported Upstream version 4.6.0.182
Former-commit-id: 439c182e520038bf50777ca2fe684f216ae28552
2016-09-01 10:46:18 +00:00

10 lines
228 B
C#

// CS0246: The type or namespace name `Foo' could not be found. Are you missing an assembly reference?
// Line: 8
class Crashy
{
void Call (System.Action<object> action) { }
public void DoCrash () => Call (f => f as Foo);
}