New test.
[mono.git] / mcs / errors / cs3014-7.cs
1 // cs3014-7.cs: `CLSClass.implicit operator CLSClass(byte)' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
2 // Line: 7
3
4 using System;
5
6 public abstract class CLSClass {
7         [CLSCompliant (true)]
8         public static implicit operator CLSClass(byte value) {
9                 return null;
10         }
11 }