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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0184-4.cs
blob
9bdc7dda66c2e4c7a6a5fa3ca46f89f5b44d28d9
1
// CS0184: The given expression is never of the provided (`B') type
2
// Line: 9
3
// Compiler options: -warnaserror -warn:1
4
5
class
B
6
{
7
static void
Foo
()
8
{
9
if
(
1
is
B
) {
10
}
11
}
12
}