// Copyright 2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #[allow(unreachable_code)] pub fn expr_while_23() { let mut x = 23is; let mut y = 23is; let mut z = 23is; while x > 0is { x -= 1is; while y > 0is { y -= 1is; while z > 0is { z -= 1is; } if x > 10is { return; "unreachable"; } } } }