2018-10-06 11:18:06 -05: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-07-28 10:34:52 -05:00
|
|
|
#![feature(tool_lints)]
|
2017-09-18 05:47:33 -05:00
|
|
|
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#[warn(clippy::cast_precision_loss, clippy::cast_possible_truncation, clippy::cast_sign_loss, clippy::cast_possible_wrap, clippy::cast_lossless)]
|
|
|
|
#[allow(clippy::no_effect, clippy::unnecessary_operation)]
|
2015-08-19 17:04:01 -05:00
|
|
|
fn main() {
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_precision_loss
|
2017-02-08 07:58:07 -06:00
|
|
|
1i32 as f32;
|
|
|
|
1i64 as f32;
|
|
|
|
1i64 as f64;
|
|
|
|
1u32 as f32;
|
|
|
|
1u64 as f32;
|
|
|
|
1u64 as f64;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_possible_truncation
|
2017-02-08 07:58:07 -06:00
|
|
|
1f32 as i32;
|
|
|
|
1f32 as u32;
|
|
|
|
1f64 as f32;
|
|
|
|
1i32 as i8;
|
|
|
|
1i32 as u8;
|
|
|
|
1f64 as isize;
|
|
|
|
1f64 as usize;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_possible_wrap
|
2017-02-08 07:58:07 -06:00
|
|
|
1u8 as i8;
|
|
|
|
1u16 as i16;
|
|
|
|
1u32 as i32;
|
|
|
|
1u64 as i64;
|
|
|
|
1usize as isize;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_lossless with casts from floating-point types
|
2017-08-13 16:58:17 -05:00
|
|
|
1.0f32 as f64;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_lossless with an expression wrapped in parens
|
2017-08-30 18:06:21 -05:00
|
|
|
(1u8 + 1u8) as u16;
|
2018-07-28 10:34:52 -05:00
|
|
|
// Test clippy::cast_sign_loss
|
2017-02-08 07:58:07 -06:00
|
|
|
1i32 as u32;
|
|
|
|
1isize as usize;
|
2015-08-22 14:36:54 -05:00
|
|
|
// Extra checks for *size
|
2017-02-15 08:20:20 -06:00
|
|
|
// Test cast_unnecessary
|
|
|
|
1i32 as i32;
|
|
|
|
1f32 as f32;
|
|
|
|
false as bool;
|
|
|
|
&1i32 as &i32;
|
2017-02-16 08:55:41 -06:00
|
|
|
// Should not trigger
|
2017-02-15 08:20:20 -06:00
|
|
|
let v = vec!(1);
|
2017-02-16 08:55:41 -06:00
|
|
|
&v as &[i32];
|
|
|
|
1.0 as f64;
|
|
|
|
1 as u64;
|
2015-09-28 00:11:03 -05:00
|
|
|
}
|