"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1738-2.cs
blobf59221f4c7a2272aceb0dfd50d913610a39d6136
1 // CS1738: Named arguments must appear after the positional arguments
2 // Line: 13
4 using System;
6 class MyAttribute : Attribute
8 public MyAttribute (string s, int value)
13 [MyAttribute (s : "a", 1)]
14 class C