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-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0037-5.cs
blob
27941132b29348fc4d36d986b2e1dc4bdc371588
1
// cs0037-5.cs: Cannot convert null to `int' because it is a value type
2
// Line: 6
3
4
class
C
5
{
6
object
[,]
i
=
new int
[
2
,
1
]
{ { null }
,
{ 2 }
};
7
}
8