2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs0253.cs
blobd70c9433b3ff1e09790857ded457d10b10d03ef9
1 // cs0253.cs: Possible unintended reference comparison; to get a value comparison, cast the right hand side to type `string'
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("11" == a);