summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0184-4.cs
blob: 9bdc7dda66c2e4c7a6a5fa3ca46f89f5b44d28d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0184: The given expression is never of the provided (`B') type
// Line: 9
// Compiler options: -warnaserror -warn:1

class B
{
	static void Foo ()
	{
		if (1 is B) {
		}
	}
}