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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs8117.cs
blob
de26499b6aa09a2d1a9d5aad340eef3111936109
1
// CS8117: Cannot use null as pattern matching operand
2
// Line: 8
3
4
class
C
5
{
6
static object
Test
()
7
{
8
return null is object
res
;
9
}
10
}