Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0252.cs
1 // CS0252: Possible unintended reference comparison. Consider casting the left side expression to type `string' to get value comparison
2 // Line: 10
3 // Compiler options: -warn:2 -warnaserror
4
5 using System;
6
7 class X {
8         static void Main() {
9                 object a = "11";
10                 Console.WriteLine(a == "11");
11         }
12 }