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
Update the reference assemblies we ship in mono.
[mono-project.git]
/
mcs
/
errors
/
cs0193-2.cs
blob
df36fee941e48aecb9fab183c4635634ff5fd4ec
1
// CS0193: The * or -> operator must be applied to a pointer
2
// Line: 10
3
// Compiler options: -unsafe
4
5
class
C
6
{
7
unsafe static void
Foo
(
object
o
)
8
{
9
bool
x
=
false
;
10
if
(
o
is bool
? *
x
:
null
) {
11
}
12
}
13
}