Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1700.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 975a2f2c7ac193c7dc538ccb7d9a60dc3e4d5d15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS1700: Friend 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 ()
	{
	}

}