a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
28 lines
296 B
C#
28 lines
296 B
C#
struct S
|
|
{
|
|
public static bool operator == (S a, S b)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public static bool operator != (S a, S b)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public class C
|
|
{
|
|
static int Print (S? i)
|
|
{
|
|
if (i != null)
|
|
return 5;
|
|
|
|
return 0;
|
|
}
|
|
|
|
public static int Main ()
|
|
{
|
|
return Print (null);
|
|
}
|
|
} |