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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0244.cs
blob
ff248e6ae503b8ae77e14d23c674830a348256f2
1
// CS0244: The `is' operator cannot be applied to an operand of pointer type
2
// Line: 7
3
// Compiler options: -unsafe
4
5
class
UnsafeClass
{
6
unsafe
UnsafeClass
(
int
*
pointer
) {
7
if
(
pointer
is string
) {}
8
}
9
}
10
11