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: 33ad471492ac3b94580f0e7ce76543d765c12fe3 (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) {}
}