[mcs] Add expression bodied syntax for accessors. Fixes #54991
[mono.git] / mcs / errors / cs0657-18.cs
1 // CS0657: `assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `type'. All attributes in this section will be ignored
2 // Line: 10
3 // Compiler options: -warnaserror
4
5 using System;
6
7 [assembly: CLSCompliant (false)]
8 public class C {}
9     
10 [assembly: CLSCompliant (false)]
11 public class D {}