2014-04-09 15:42:25 -05:00
|
|
|
// 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 <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.
|
|
|
|
|
|
|
|
// Regression test for #13428
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
fn foo() -> String { //~ ERROR not all control paths return a value
|
2014-05-27 22:44:58 -05:00
|
|
|
format!("Hello {}",
|
|
|
|
"world")
|
2014-04-09 15:42:25 -05:00
|
|
|
// Put the trailing semicolon on its own line to test that the
|
|
|
|
// note message gets the offending semicolon exactly
|
2014-10-17 21:39:44 -05:00
|
|
|
; //~ HELP consider removing this semicolon
|
2014-04-09 15:42:25 -05:00
|
|
|
}
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
fn bar() -> String { //~ ERROR not all control paths return a value
|
2014-05-25 05:17:19 -05:00
|
|
|
"foobar".to_string()
|
2014-10-17 21:39:44 -05:00
|
|
|
; //~ HELP consider removing this semicolon
|
2014-04-09 15:42:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {}
|