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

cs0430.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8925298d6f0cfdf794d6e5dc7274143cbece7a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0430: The extern alias `dontdefined' was not specified in -reference option
// Line: 4

extern alias dontdefined;
using System;

public class Tester
{
	static void Main ()
	{
	}
}