[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-exmethod-27.cs
blob6351c628653a31ed95e950336064f956ac395c0a
1 using System;
2 using System.Collections.Generic;
4 namespace Foo
7 static partial class Extensions
11 static partial class Extensions
14 public static string AsString (this IList<byte> bytes)
16 return "42";
21 namespace Bar
24 using Foo;
26 class Program
29 public static void Main ()
31 Console.WriteLine (Pan (new byte[0]));
34 internal static string Pan (byte[] bytes)
36 return bytes.AsString ();