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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0184.cs
blob
f6bfca66ab837eef32e997be0f6ae95a07d4a441
1
// CS0184: The given expression is never of the provided (`byte') type
2
// Line:
3
// Compiler options: -warnaserror -warn:1
4
5
class
X
{
6
7
static void
Main
()
8
{
9
int
a
=
1
;
10
11
if
(
a
is byte
){
12
}
13
}
14
}