2018-10-06 18:18:06 +02:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2018-05-11 13:20:39 +02:00
|
|
|
#![feature(never_type)]
|
2018-07-28 17:34:52 +02:00
|
|
|
#![warn(clippy::diverging_sub_expression)]
|
|
|
|
#![allow(clippy::match_same_arms, clippy::logic_bug)]
|
2016-09-06 15:15:36 +02:00
|
|
|
|
2018-07-28 17:34:52 +02:00
|
|
|
#[allow(clippy::empty_loop)]
|
2018-12-09 23:26:16 +01:00
|
|
|
fn diverge() -> ! {
|
|
|
|
loop {}
|
|
|
|
}
|
2016-09-06 15:15:36 +02:00
|
|
|
|
2016-09-13 12:41:37 +02:00
|
|
|
struct A;
|
|
|
|
|
|
|
|
impl A {
|
2018-12-09 23:26:16 +01:00
|
|
|
fn foo(&self) -> ! {
|
|
|
|
diverge()
|
|
|
|
}
|
2016-09-13 12:41:37 +02:00
|
|
|
}
|
|
|
|
|
2018-07-28 17:34:52 +02:00
|
|
|
#[allow(unused_variables, clippy::unnecessary_operation, clippy::short_circuit_statement)]
|
2016-09-06 15:15:36 +02:00
|
|
|
fn main() {
|
|
|
|
let b = true;
|
2017-02-08 14:58:07 +01:00
|
|
|
b || diverge();
|
|
|
|
b || A.foo();
|
2016-09-06 15:15:36 +02:00
|
|
|
}
|
2016-09-13 14:52:21 +02:00
|
|
|
|
|
|
|
#[allow(dead_code, unused_variables)]
|
|
|
|
fn foobar() {
|
|
|
|
loop {
|
|
|
|
let x = match 5 {
|
|
|
|
4 => return,
|
|
|
|
5 => continue,
|
2017-02-08 14:58:07 +01:00
|
|
|
6 => true || return,
|
|
|
|
7 => true || continue,
|
2016-09-13 14:52:21 +02:00
|
|
|
8 => break,
|
|
|
|
9 => diverge(),
|
2017-02-08 14:58:07 +01:00
|
|
|
3 => true || diverge(),
|
2016-10-01 14:41:20 +02:00
|
|
|
10 => match 42 {
|
|
|
|
99 => return,
|
2016-11-16 21:57:56 +01:00
|
|
|
_ => true || panic!("boo"),
|
2016-10-01 14:41:20 +02:00
|
|
|
},
|
2017-02-08 14:58:07 +01:00
|
|
|
_ => true || break,
|
2016-09-13 14:52:21 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|