repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add failing test for bnc550722
[mcs.git]
/
tests
/
test-320.cs
blob
6665cd723b4e37a0bfbe9ed73300f1465156d4ed
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
static void
Main
()
12
{
13
new
X
((
sbyte
*)
null
,
0
,
10
);
14
}
15
}