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

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

}