quote only work on lambda on net_4_0
[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) {}