New test.
[mono.git] / mcs / errors / gcs0647.cs
1 // gcs0647.cs: Error during emitting `System.Runtime.CompilerServices.InternalsVisibleToAttribute' attribute. The reason is `Friend assembly `MyAssemblyName, Version=0.0.0.0' 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 ("MyAssemblyName, Version=0.0.0.0")]
8
9 public class InternalsVisibleToTest 
10 {
11         static void Main ()
12         {
13         }
14
15 }
16