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: 7a6705b48be20033377e01ef74e4a1cb3088d0d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0430.cs: The extern alias 'dontdefined' was not specified in a /reference option
// Line: 4

extern alias dontdefined;
using System;

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