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
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0664.cs
blob
0a4022793c73a7e40301a0de60cfc96c0b2a00b8
1
// cs0664.cs: Literal of type double cannot be implicitly converted to type `float'. Add suffix `f' to create a literal of this type
2
// Line: 6
3
class
X
{
4
void
A
()
5
{
6
float
f
=
2.0
;
7
}
8
}