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-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0184-5.cs
blob
2462fbdfa3f72c3af962ea281b0d4b79d8538007
1
// CS0184: The given expression is never of the provided (`byte') type
2
// Line: 13
3
// Compiler options: -warnaserror -warn:1
4
5
class
S
{}
6
7
class
X
8
{
9
static void
Main
()
10
{
11
const
S x
=
null
;
12
13
if
(
x
is byte
) {
14
}
15
}
16
}