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
/
cs0037-2.cs
blob
ba2977009f736c1b226f0ed7bea82ca7f4b0e7f4
1
// cs0037-2.cs: Cannot convert null to `char' because it is a value type
2
// Line: 8
3
4
class
Test
5
{
6
static void
Main
()
7
{
8
char
p
=
null
;
9
}
10
}