[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1700.cs
1 // CS1700: Friend assembly reference `MyAssemblyName, Version=' is invalid and cannot be resolved
2 // Line: 8
3 // Compiler options: -warnaserror -warn:3
4
5 using System;
6 using System.Runtime.CompilerServices;
7
8 [assembly: InternalsVisibleTo ("MyAssemblyName, Version=")]
9
10 public class InternalsVisibleToTest 
11 {
12         static void Main ()
13         {
14         }
15
16 }
17