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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs8143.cs
blob
19064cdea1a35cd800ef05d56f4b8e2228e24e68
1
// CS8143: An expression tree cannot contain a tuple literal
2
// Line: 11
3
4
using
System
;
5
using
System
.
Linq
.
Expressions
;
6
7
class
C
8
{
9
public static void
Main
()
10
{
11
Expression
<
Func
<
object
>>
l
= () => (-
1
,
2
);
12
}
13
}