2005-05-13 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / cs0246-5.cs
1 // cs0246.cs: The type or namespace name 'AAAA' could not be found (are you missing a using directive or an assembly reference?)
2 // Line: 7
3
4 using System;
5 [assembly:CLSCompliant (true)]
6
7 [AAAA(false)]
8 public sealed class Region
9 {
10     public Region() {}
11 }