536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
14 lines
240 B
C#
14 lines
240 B
C#
// CS8122: An expression tree cannot contain a pattern matching operator
|
|
// Line: 12
|
|
|
|
using System;
|
|
using System.Linq.Expressions;
|
|
|
|
class X
|
|
{
|
|
public static void Main ()
|
|
{
|
|
object o = 1;
|
|
Expression<Func<bool>> e = () => o is int y;
|
|
}
|
|
} |