Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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)) {}
}
}