2014-09-04 09:07:35 +01:00
|
|
|
// CS1700: Friend assembly reference `MyAssemblyName, Version=' is invalid and cannot be resolved
|
2014-08-13 10:39:27 +01:00
|
|
|
// Line: 8
|
|
|
|
// Compiler options: -warnaserror -warn:3
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
|
|
|
[assembly: InternalsVisibleTo ("MyAssemblyName, Version=")]
|
|
|
|
|
|
|
|
public class InternalsVisibleToTest
|
|
|
|
{
|
|
|
|
static void Main ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|