[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0656-3.cs
blobdfc3d3721af6ff539b2003f032786feec731ff60
1 // CS0656: The compiler required member `System.Threading.Interlocked.CompareExchange(ref T, T, T)' could not be found or is inaccessible
2 // Line: 20
3 // Compiler options: -nostdlib CS0656-corlib.cs
5 namespace System {
6 public partial class Delegate {
7 public static Delegate Combine(Delegate a, Delegate b) { return null; }
8 public static void Remove(Delegate a, Delegate b) { return; }
12 namespace System.Threading {
13 class Interlocked {}
16 delegate void D();
18 class Test
20 event D ev;