Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs0252.cs
blob364ae9fed094b933ff78bc50c079cb20521132f4
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
5 using System;
7 class X {
8 static void Main() {
9 object a = "11";
10 Console.WriteLine(a == "11");