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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0828-4.cs
blob
a10fcfc2340a451fd4554a43e2ac8a1c1e24d195
1
// CS0828: An anonymous type property `Value' cannot be initialized with `anonymous method'
2
// Line: 8
3
4
public class
Test
5
{
6
static void
Main
()
7
{
8
var
v
=
new
{ Value = i => 1 }
;
9
}
10
}