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-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0594-3.cs
blob
efd2cf123a2f3b3b55b260510206dfe809f0af0b
1
// cs0594-3.cs: Floating-point constant is outside the range of type `float'
2
// Line: 6
3
4
class
X
{
5
public static void
Main
() {
6
float
f
=
1.0
e999999f
;
7
}
8
}