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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0037-9.cs
blob
a039cba3e3b44ed4c9fa6bbe08aabd8fdeb4589c
1
// CS0037: Cannot convert null to `int' because it is a value type
2
// Line: 6
3
4
class
C
5
{
6
int
[,]
i
=
new int
[
2
,
null
]
{ { 1 }
,
{ 2 }
};
7
}
8