by Michael G Schwern.
p4raw-id: //depot/perl@23645
# If you find tests are failing, please try adding names to tests to track
# down where the failure is, and supply your new names as a patch.
# (Just-in-time test naming)
-plan tests => 145;
+plan tests => 146;
# numerics
ok ((0xdead & 0xbeef) == 0x9ead);
ok(utf8::is_utf8($a)); # make sure UTF8 flag is still there
$a = ~$a;
is($a, "\xFF", "~ works with utf-8");
+
+# [rt.perl.org 33003]
+# This would cause a segfault
+is( runperl(prog => '$#a>>=1; print 1'), 1 );