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

cs0433.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65ae3ace3370037af20d2051db254a835fcf20cd (plain)
1
2
3
4
5
6
7
8
9
10
// cs0433.cs: The imported type `N.Lib' is defined multiple times
// Line: 9
// Compiler options: -r:CS0433-lib.dll -r:CS0433-2-lib.dll

using N;

public class Test: Lib
{
	public static void Main () {}
}