]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/liveness-return-last-stmt-semi.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / liveness-return-last-stmt-semi.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10//
11// regression test for #8005
12
c34b1796 13macro_rules! test { () => { fn foo() -> i32 { 1; } } }
85aaf69f
SL
14 //~^ ERROR not all control paths return a value
15 //~^^ HELP consider removing this semicolon
54a0048b 16 //~^^^ HELP run `rustc --explain E0269` to see a
1a4d82fc 17
85aaf69f 18fn no_return() -> i32 {} //~ ERROR not all control paths return a value
54a0048b 19 //~^ HELP run `rustc --explain E0269` to see a detailed explanation
1a4d82fc
JJ
20
21fn bar(x: u32) -> u32 { //~ ERROR not all control paths return a value
54a0048b 22 //~^ HELP run `rustc --explain E0269` to see a detailed explanation
1a4d82fc
JJ
23 x * 2; //~ HELP consider removing this semicolon
24}
25
26fn baz(x: u64) -> u32 { //~ ERROR not all control paths return a value
54a0048b 27 //~^ HELP run `rustc --explain E0269` to see a detailed explanation
1a4d82fc
JJ
28 x * 2;
29}
30
31fn main() {
32 test!();
33}