a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
13 lines
184 B
C#
13 lines
184 B
C#
//
|
|
// From bug 77032
|
|
//
|
|
class X {
|
|
static int stored_offset, stored_len, opt_len;
|
|
|
|
public static void Main ()
|
|
{
|
|
if (stored_offset >= 0 && (stored_len+4) < (opt_len >> 3)) {}
|
|
|
|
}
|
|
}
|