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

class A {
	static void Main () { 
		System.Console.WriteLine (null is string);
	}
}