repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-03-15 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs0838.cs
blob
7e11b7132d8d9d5bfe0a392ae8b6fc34805650c6
1
// CS0838: An expression tree cannot contain a multidimensional array initializer
2
// Line: 11
3
4
using
System
;
5
using
System
.
Linq
.
Expressions
;
6
7
class
C
8
{
9
void
Foo
()
10
{
11
Expression
<
Func
<
char
[,]>>
e
= () =>
new char
[,]
{ { 'x', 'y' }
,
{ 'a', 'b' }}
;
12
}
13
}