1 2 3 4 5 6 7 8 9 10
// Regression test for issue #152. fn main() { let uint b = 1u; while (b <= 32u) { 0u << b; b <<= 1u; log b; } }