804b15604f
Former-commit-id: 439c182e520038bf50777ca2fe684f216ae28552
10 lines
228 B
C#
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);
|
|
}
|