[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1726.cs
blob0790bcb0b3ab2310f5a4958c8b62fc6a296b92e9
1 // CS1726: Friend assembly reference `MyAssemblyName' is invalid. Strong named assemblies must specify a public key in their InternalsVisibleTo declarations
2 // Line: 8
3 // Compiler options: -keyfile:key.snk
5 using System;
6 using System.Runtime.CompilerServices;
8 [assembly: InternalsVisibleTo ("MyAssemblyName")]
10 public class Test
12 static void Main ()