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

cs1981.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6507a09c49b5121b8ceee0b9e92515bb7fa46528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1981: Using `is' to test compatibility with `dynamic' is identical to testing compatibility with `object'
// Line: 10
// Compiler options: -warnaserror

class C
{
	public static void Main ()
	{
		object o = null;
		bool b = o is dynamic;
	}
}