copying the latest Sys.Web.Services from trunk.
[mono.git] / mcs / errors / cs3001-5.cs
1 // cs3001.cs: Argument type 'sbyte' is not CLS-compliant
2 // Line: 8
3
4 using System;
5 [assembly:CLSCompliant(true)]
6
7 public class CLSClass {
8         public delegate int MyDelegate(sbyte i);
9 }