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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0037-5.cs
blob
64153c19cbf2de929dacf195cd00174df81207d6
1
// CS0037: 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