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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0183.cs
blob
c067524001797eaaf5b66e68a52ff80bb98aefe0
1
// CS0183: The given expression is always of the provided (`int') type
2
// Line:
3
// Compiler options: -warnaserror -warn:1
4
5
class
X
{
6
7
static void
Main
()
8
{
9
int
i
=
5
;
10
11
if
(
i
is int
){
12
}
13
}
14
}