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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0183-3.cs
blob
9f00a589830b7f8f2b5d2217e11de2e4f0001625
1
// CS0183: The given expression is always of the provided (`int?') type
2
// Line: 10
3
// Compiler options: -warnaserror -warn:1
4
5
class
X
6
{
7
public void
Foo
()
8
{
9
int
?
x
=
null
;
10
if
(
x
is int
?) {
11
}
12
}
13
}