536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
13 lines
194 B
C#
13 lines
194 B
C#
// CS8208: The type `dynamic' pattern matching is not allowed
|
|
// Line: 9
|
|
|
|
static class Program
|
|
{
|
|
public static void Main ()
|
|
{
|
|
object o = null;
|
|
if (o is dynamic res) {
|
|
}
|
|
}
|
|
}
|