Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs3014-7.cs
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
4
5 using System;
6
7 public abstract class CLSClass {
8         [CLSCompliant (true)]
9         public static implicit operator CLSClass(byte value) {
10                 return null;
11         }
12 }