Merge pull request #3663 from lateralusX/jlorenss/win-api-family-support-libgcmonosgen
[mono.git] / mcs / errors / cs0838.cs
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 }