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

public class Test
{
	static void Foo ()
	{
	}
	
	public static void Main()
	{
		bool b = Foo () is object;
	}
}