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
Warnings cleanup
[mcs.git]
/
errors
/
cs0221-8.cs
blob
60f6bc9ac1dc7059f4ac1d111fef52bec81b5207
1
// cs0221-8.cs: Constant value `Infinity' cannot be converted to a `uint' (use `unchecked' syntax to override)
2
// Line: 6
3
4
class
X
{
5
static void
Main
() {
6
System
.
Console
.
WriteLine
((
uint
)
double
.
PositiveInfinity
);
7
}
8
}