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
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
cs0030-2.cs
blob
036d8fdf79b6714c41a2b9800b941e83023036ac
1
// cs0030.cs : Cannot convert type `bool' to `float'
2
// Line : 12
3
4
public class
Blah
{
5
6
public static int
Main
()
7
{
8
const bool
k
=
false
;
9
float
f
= (
float
)
k
;
10
11
}
12
}