2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / dcs0182.cs
blobcbaafd09d5828d37ab343ad404f847c66b781b4e
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 13
4 using System;
6 class AAttribute : Attribute
8 public AAttribute (dynamic X)
13 [A (Test.B)]
14 class Test
16 public static dynamic B;
18 static void Main ()