Update
[mono.git] / mcs / errors / gcs0647-2.cs
1 // gcs0647-2.cs: Error during emitting `System.Runtime.CompilerServices.InternalsVisibleToAttribute' attribute. The reason is `Friend assembly `AssemblySomething, Culture=en-US' is invalid. InternalsVisibleTo cannot have version or culture specified.'
2 // Line: 8
3
4 using System;
5 using System.Runtime.CompilerServices;
6
7 [assembly: InternalsVisibleTo ("AssemblySomething, Culture=en-US")]
8
9 public class InternalsVisibleToTest 
10 {
11         static void Main ()
12         {
13         }
14 }
15