2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0182-8.cs
blob56d98c4dc167892c9c9e58b42e1898fcf85ca4c3
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 13
4 using System;
6 class MyAttribute : Attribute {
8 public MyAttribute (string s)
13 [My (null as string)]
14 class X {
16 static void Main ()