1 // CS3001: Argument type `sbyte' is not CLS-compliant
3 // Compiler options: -warnaserror -warn:1
6 [assembly
:CLSCompliant(true)]
8 public class CLSClass
{
9 static public implicit operator CLSClass(byte value) {
10 return new CLSClass();
13 static public implicit operator CLSClass(sbyte value) {
14 return new CLSClass();