* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / gcs1726.cs
1 // gcs1726.cs: 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:InternalsVisibleTest.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