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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
test-320.cs
blob
57981fb8f751a884bb8acd54a0f33fb9c643e68d
1
// Compiler options: -unsafe
2
3
4
using
System
;
5
6
unsafe class
X
{
7
8
unsafe public
X
(
sbyte
*
value
,
int
startIndex
,
int
length
) {
9
}
10
11
public static void
Main
()
12
{
13
new
X
((
sbyte
*)
null
,
0
,
10
);
14
}
15
}