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

cs0246-11.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12ea7406be2fb641af64a0b1b5f224bd5f9fb341 (plain)
1
2
3
4
5
6
7
8
// cs0246-11.cs: The type or namespace name `aa' could not be found. Are you missing a using directive or an assembly reference?
// Line: 6

public class Test
{
	[aa.bb] int dummy;
}