blob: 242fd5f43a80ed40938048ef6a74c4ac6a11ac33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS3001: Argument type `sbyte' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1
using System;
[assembly:CLSCompliant (true)]
public static class CLSClass
{
public static void Foo (this sbyte value) { }
}
|