Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs8208.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca6cd1dd5cefec34e5b5d346079bae6cd9c594fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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) {
		}
	}
}