[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0246-36.cs
blob2bd356715c6e0c238ff6d03f827368beee09538c
1 // CS0246: The type or namespace name `Foo' could not be found. Are you missing an assembly reference?
2 // Line: 8
4 class Crashy
6 void Call (System.Action<object> action) { }
8 public void DoCrash () => Call (f => f as Foo);