Unknown attribute
An attribute was used that is neither a user-defined attribute nor a predefined attribute.
The following sample generates CS0181:
namespace x { [x] // CS0181 public class a { public static void Main() { } } }