repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0594-4.cs
blob
d926bccfb0281595c9d9aed36c5ab7b6cb57d86d
1
// CS0594: Floating-point constant is outside the range of type `float'
2
// Line: 6
3
4
class
X
{
5
public static void
Main
() {
6
float
b
=
11111111111111111111111111111111111122222222222222222
f
;
7
}
8
}