[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs1738-2.cs
blob44b3f6d1b14d59cf7a8577be691dd35f938d2a5c
1 // CS1738: Named arguments must appear after the positional arguments when using language version older than 7.2
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