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
/
cs1660-3.cs
blob
29709a21dba0821bff025558475602377df71eb0
1
// CS1660: Cannot convert `lambda expression' to non-delegate type `object'
2
// Line: 9
3
4
using
System
;
5
6
class
X
{
7
static void
Main
()
8
{
9
object
o
= () =>
true
;
10
}
11
}