2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1738-2.cs
blobcd6838c375458a9c9c2641556be046aac8b1bd75
1 // CS1738: Named arguments must appear after the positional arguments
2 // Line: 13
3 // Compiler options: -langversion:future
5 using System;
7 class MyAttribute : Attribute
9 public MyAttribute (string s, int value)
14 [MyAttribute (s : "a", 1)]
15 class C