for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs3023.cs
blob3e87c8cacd8117bb98e4b3f3a83d45e29f9f4f9b
1 // CS3023: CLSCompliant attribute has no meaning when applied to return types. Try putting it on the method instead
2 // Line: 8
3 // Compiler options: -warn:1 -warnaserror
5 using System;
6 [assembly: CLSCompliant (true)]
8 public class Class {
9 [return:CLSCompliant(false)]
10 public ulong Test ()
12 return 4;