2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 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 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-03-05 15:28:08 -08:00
|
|
|
use std::vec::Vec;
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2012-08-09 10:50:18 -07:00
|
|
|
fn main() {
|
2015-01-08 21:54:35 +11:00
|
|
|
let a: Vec<isize> = Vec::new();
|
2014-07-07 15:22:23 -07:00
|
|
|
a.iter().all(|_| -> bool {
|
2015-03-18 09:22:38 -04:00
|
|
|
//~^ ERROR not all control paths return a value
|
2012-08-09 10:50:18 -07:00
|
|
|
});
|
2012-05-19 05:52:01 -07:00
|
|
|
}
|