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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0196.cs
blob
1240bdf7081f6f1cebd813fff8ae507b33e74e29
1
// cs0196.cs: A pointer must be indexed by only one value
2
// Line: 10
3
// Compiler options: -unsafe
4
using
System
;
5
6
unsafe class
ZZ
{
7
static void
Main
() {
8
int
*
p
=
null
;
9
10
if
(
p
[
10
,
4
] ==
4
)
11
return
;
12
}
13
}