blob: 6c464629e7e3713573183893610b5e204438d864 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0246: The type or namespace name `AAAA' could not be found. Are you missing an assembly reference?
// Line: 7
using System;
[assembly:CLSCompliant (true)]
[AAAA(false)]
public sealed class Region
{
public Region() {}
}
|