repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
errors
/
cs3001-8.cs
blob
831c43db6ca533769295a901de5b1e544bc29a22
1
// CS3001: Argument type `int*' is not CLS-compliant
2
// Line: 9
3
// Compiler options: -unsafe -warnaserror -warn:1
4
5
using
System
;
6
[
assembly
:
CLSCompliant
(
true
)]
7
8
unsafe public abstract class
CLSClass
{
9
public void
Method
(
int
*
param
) {}
10
}