2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3014-7.cs
blob756ceb515f67bd4472ce137ac29a863426f25302
1 // CS3014: `CLSClass.implicit operator CLSClass(byte)' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
2 // Line: 9
3 // Compiler options: -warnaserror -warn:1
5 using System;
7 public abstract class CLSClass {
8 [CLSCompliant (true)]
9 public static implicit operator CLSClass(byte value) {
10 return null;