blob: 0ff4956b273a63a6d5c698f5c8824bc9fca153ec (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS3001: Argument type `sbyte' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1
using System;
[assembly:CLSCompliant(true)]
public class CLSClass {
public delegate int MyDelegate(sbyte i);
}
|