12 lines
273 B
C#
Raw Normal View History

class T {
static object get_obj() {
return new object ();
}
public static int Main() {
object o = get_obj ();
if (o == "string")
return 1;
return 0;
}
}