Files
linux-packaging-mono/mcs/errors/cs8208.cs

13 lines
194 B
C#
Raw Normal View History

// 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) {
}
}
}