Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / test-111.cs
1 class T {
2         static object get_obj() {
3                 return new object ();
4         }
5         static int Main() {
6                 object o = get_obj ();
7                 if (o == "string")
8                         return 1;
9                 return 0;
10         }
11 }