quote only work on lambda on net_4_0
[mcs.git] / errors / cs1016.cs
blob69a364603181beb4264556df322e2741c0cb64cf
1 // CS1016: Named attribute arguments must appear after the positional arguments
2 // Line: 19
4 using System;
5 using System.Runtime.CompilerServices;
7 class Attr: Attribute
9 public Attr (int i) {}
11 public string Arg {
12 set {}
13 get { return "a"; }
17 public class E
19 [Attr (Arg = "xxx", 3)]
20 public void Method () {}