a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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;
|
|
}
|
|
}
|