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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0594-2.cs
blob
90f8d8995ef4fc7fbe17802111b3cbec793dbf89
1
// cs0594-2.cs: Floating-point constant is outside the range of type `double'
2
// Line: 6
3
4
class
X
{
5
public static void
Main
() {
6
double
dbl
=
1.0
e99999
;
7
}
8
}