ignores
[mcs.git] / errors / gcs0838.cs
blob7e11b7132d8d9d5bfe0a392ae8b6fc34805650c6
1 // CS0838: An expression tree cannot contain a multidimensional array initializer
2 // Line: 11
4 using System;
5 using System.Linq.Expressions;
7 class C
9 void Foo ()
11 Expression<Func<char [,]>> e = () => new char [,] { { 'x', 'y' }, { 'a', 'b' }};