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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1958.cs
blob
f9fda1fa73484c3b1de0a3f230014151589b5c57
1
// CS1958: Object and collection initializers cannot be used to instantiate a delegate
2
// Line: 9
3
using
System
;
4
5
class
Test
6
{
7
public static void
Main
()
8
{
9
var
a
=
new
Action
(
delegate
{ }
) {
10
};
11
}
12
}