Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / test-111.cs
1 class T {
2         static object get_obj() {
3                 return new object ();
4         }
5         public static int Main() {
6                 object o = get_obj ();
7                 if (o == "string")
8                         return 1;
9                 return 0;
10         }
11 }