blob: 831c43db6ca533769295a901de5b1e544bc29a22 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS3001: Argument type `int*' is not CLS-compliant
// Line: 9
// Compiler options: -unsafe -warnaserror -warn:1
using System;
[assembly:CLSCompliant(true)]
unsafe public abstract class CLSClass {
public void Method (int* param) {}
}
|