Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs1700.cs
1 // gcs1700.cs: 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