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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0594.cs
blob
6d7a16e83539976fc848a0d42194090445e6a37a
1
// cs0594.cs: Floating-point constant is outside the range of type `decimal'
2
// Line: 6
3
4
class
X
{
5
public static void
Main
() {
6
decimal
d
=
12311111111111111111111111111111111111111111111111
m
;
7
}
8
}