blob: 4b2021994cd0981194e2c11040e74fe2fcce492c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS1700: Assembly reference `MyAssemblyName, Version=' is invalid and cannot be resolved
// Line: 8
// Compiler options: -warnaserror -warn:3
using System;
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo ("MyAssemblyName, Version=")]
public class InternalsVisibleToTest
{
static void Main ()
{
}
}
|