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
2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
errors
/
cs0221-13.cs
blob
f5e7b4c57eba86737512174aac8e8127d0bc4499
1
// CS0221: Constant value `NaN' cannot be converted to a `char' (use `unchecked' syntax to override)
2
// Line: 6
3
4
class
X
{
5
static void
Main
() {
6
System
.
Console
.
WriteLine
((
char
)
float
.
NaN
);
7
}
8
}