Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs3001-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51df1f8cd2745e8305d1ac2955a5c4cd073613f9 (plain)
1
2
3
4
5
6
7
8
9
10
// cs3001.cs: Argument type 'int*' is not CLS-compliant
// Line: 9
// Compiler options: --unsafe

using System;
[assembly:CLSCompliant(true)]

unsafe public abstract class CLSClass {
        public void Method (int* param) {}
}