Resolve entire base initializer block in correct context
[mono.git] / mcs / errors / gcs0281.cs
1 // gcs0281.cs: Friend access was granted to `gcs0281, PublicKeyToken=27576a8182a18822', but the output assembly is named `gcs0281, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'. Try adding a reference to `gcs0281, PublicKeyToken=27576a8182a18822' or change the output assembly name to match it
2 // Line: 0
3 // Compiler options: -r:CSFriendAssembly-lib.dll
4
5 using System;
6
7 public class Test
8 {
9         static void Main ()
10         {
11                 FriendClass.MyMethod ();
12         }
13 }
14