[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1726.cs
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
4
5 using System;
6 using System.Runtime.CompilerServices;
7
8 [assembly: InternalsVisibleTo ("MyAssemblyName")]
9
10 public class Test
11 {
12         static void Main ()
13         {
14         }
15 }
16