fe777c5c82
Former-commit-id: 6a76a29bd07d86e57c6c8da45c65ed5447d38a61
16 lines
147 B
C#
16 lines
147 B
C#
using System;
|
|
|
|
class C
|
|
{
|
|
public static int Main ()
|
|
{
|
|
return Bar (null) ? 1 : 0;
|
|
}
|
|
|
|
static bool Bar (object t)
|
|
{
|
|
return t is object;
|
|
}
|
|
}
|
|
|