2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3001-8.cs
blob831c43db6ca533769295a901de5b1e544bc29a22
1 // CS3001: Argument type `int*' is not CLS-compliant
2 // Line: 9
3 // Compiler options: -unsafe -warnaserror -warn:1
5 using System;
6 [assembly:CLSCompliant(true)]
8 unsafe public abstract class CLSClass {
9 public void Method (int* param) {}