summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-11.cs
blob: b6bd9e809782290f21e19ead23d752959ec8e456 (plain)
1
2
3
4
5
6
7
8
// CS0246: The type or namespace name `aa' could not be found. Are you missing an assembly reference?
// Line: 6

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