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
2009-02-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
errors
/
cs0193.cs
blob
2d32ba3cb99966c13d3a29b66ad7f70e69b91494
1
// cs0193.cs: The * or -> operator must be applied to a pointer
2
// Line: 9
3
// Compiler options: -unsafe
4
5
unsafe class
X
{
6
static void
Main
()
7
{
8
int
a
=
0
;
9
if
(*
a
==
0
)
10
return
1
;
11
12
return
0
;
13
}
14
}