Copied remotely
[mono.git] / mcs / errors / cs3001.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         protected internal void Foo (string text, sbyte value) { }
9 }