<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0182</ErrorName>
  <Examples>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 13

using System;

class TestAttribute: Attribute
{
	public TestAttribute (int[][] o) {}
}

public class E
{
	[Test (null)]
	public static void Main ()
	{
		System.Reflection.MethodBase.GetCurrentMethod().GetCustomAttributes (true);
	}
}</string>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 13

using System;

class MyAttribute : Attribute
{
	public MyAttribute (object s)
	{
	}
}

[My (decimal.MaxValue)]
class X
{
}
</string>
    <string>// cs0182.cs : An attribute argument must be a constant expression, typeof expression or array creation expression
// Line : 13

using System;

class TestAttribute: Attribute
{
    public TestAttribute (int[,] i) {}
}

public class E
{
    [Test (null)]
    public void Method () {}
}</string>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 14
using System;
using System.Reflection;

[AttributeUsage (AttributeTargets.All)]
public class MineAttribute : Attribute {
	public MineAttribute (Type [] t)
	{
	}
}


[Mine(new Type [2])]
public class Foo {	
	public static int Main ()
	{
		return 0;
	}
}






</string>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 4

[A (true is bool)]
class AAttribute : System.Attribute
{
	public AAttribute (bool b)
	{
	}
}
</string>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 4

[A (false ? new object () : null)]
class AAttribute : System.Attribute
{
	public AAttribute (object value)
	{
	}
}
</string>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 6

using System.Reflection;

[assembly: AssemblyKeyFile(string.Empty)]
</string>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 13

using System;

[AttributeUsage (AttributeTargets.All)]
public class MineAttribute : Attribute {
	public MineAttribute (Type [] t)
	{
	}
}

[Mine(new Type [(ulong) 3])]
public class Foo
{
}






</string>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 13

using System;

class MyAttribute : Attribute {

	public MyAttribute (string s)
	{
	}
}

[My (null as string)]
class X {

	static void Main ()
	{
	}
}
</string>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 13

using System;

class TestAttribute: Attribute
{
	public TestAttribute (object o) {}
}

public class E
{
	[Test (new int[][] { null })]
	public static void Main ()
	{
		System.Reflection.MethodBase.GetCurrentMethod().GetCustomAttributes (true);
	}
}</string>
    <string>// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 14
using System;
using System.Reflection;

[AttributeUsage (AttributeTargets.All)]
public class MineAttribute : Attribute {
	public MineAttribute (object t)
	{
	}
}


[Mine(new Type [2,2])]
public class Foo {	
	public static int Main ()
	{
		return 0;
	}
}
</string>
  </Examples>
</ErrorDocumentation>