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
w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git]
/
mcs
/
errors
/
cs0244-2.cs
blob
c6249bf213e38fffc6937da2041305b9e68bc966
1
// CS0244: The `is' operator cannot be applied to an operand of pointer type
2
// Line: 9
3
// Compiler options: -unsafe
4
5
class
C
6
{
7
static unsafe void
Main
()
8
{
9
bool
p
=
null is int
*;
10
}
11
}