<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1671</ErrorName>
  <Examples>
    <string>// CS1671: A namespace declaration cannot have modifiers or attributes
// Line : 14

using System;

[assembly: CLSCompliant (false)]

namespace N
{
}

[assembly: Obsolete]

namespace M
{
}

public class C {
    public static void Main () {}
}</string>
    <string>// CS1671: A namespace declaration cannot have modifiers or attributes
// Line: 5
using System;

[error_1518(11)]
namespace Mono.Tests
{
	[AttributeUsage(AttributeTargets.All)]
	public class error_1518Attribute : Attribute
	{
		private int x;

		public error_1518Attribute(int x)
		{
			this.x = x;
		}

		public int X
		{
			get
			{
				return x;
			}
		}
	}

	[error_1518(10)]
	public class error_1518Class
	{
		public error_1518Class()
		{
		}
	}
}</string>
  </Examples>
</ErrorDocumentation>