12 lines
273 B
C#
12 lines
273 B
C#
|
class T {
|
||
|
static object get_obj() {
|
||
|
return new object ();
|
||
|
}
|
||
|
public static int Main() {
|
||
|
object o = get_obj ();
|
||
|
if (o == "string")
|
||
|
return 1;
|
||
|
return 0;
|
||
|
}
|
||
|
}
|