repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0183.cs
blob
0dbd86664b390b1d9699707a95e1727575c586a4
1
// cs0183.cs: 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
}