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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0193.cs
blob
3eae90ffd6ebbea6a10510e061f7986582f362ec
1
// CS0193: 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
;
11
}
12
}