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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0828.cs
blob
a555560974a776c06347efb4623296b2400a8f44
1
// CS0828: An anonymous type property `Value' cannot be initialized with `null'
2
// Line: 9
3
4
5
public class
Test
6
{
7
static void
Main
()
8
{
9
int
A
=
9
;
10
var
v1
=
new
{ A, Value = null }
;
11
}
12
}