blob: 7e11b7132d8d9d5bfe0a392ae8b6fc34805650c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0838: An expression tree cannot contain a multidimensional array initializer
// Line: 11
using System;
using System.Linq.Expressions;
class C
{
void Foo ()
{
Expression<Func<char [,]>> e = () => new char [,] { { 'x', 'y' }, { 'a', 'b' }};
}
}
|