mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
d365742bc6
We only want this lint to check casts to numeric, as per the lint title.
Rust already has a built-in check for all other casts
[here][rust_check].
[rust_check]: 5472b0718f/src/librustc_typeck/check/cast.rs (L430-L433)
64 lines
1.5 KiB
Rust
64 lines
1.5 KiB
Rust
// 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.
|
|
|
|
|
|
// only-64bit
|
|
#![feature(tool_lints)]
|
|
|
|
#![warn(clippy::fn_to_numeric_cast, clippy::fn_to_numeric_cast_with_truncation)]
|
|
|
|
fn foo() -> String { String::new() }
|
|
|
|
fn test_function_to_numeric_cast() {
|
|
let _ = foo as i8;
|
|
let _ = foo as i16;
|
|
let _ = foo as i32;
|
|
let _ = foo as i64;
|
|
let _ = foo as i128;
|
|
let _ = foo as isize;
|
|
|
|
let _ = foo as u8;
|
|
let _ = foo as u16;
|
|
let _ = foo as u32;
|
|
let _ = foo as u64;
|
|
let _ = foo as u128;
|
|
|
|
// Casting to usize is OK and should not warn
|
|
let _ = foo as usize;
|
|
|
|
// Cast `f` (a `FnDef`) to `fn()` should not warn
|
|
fn f() {}
|
|
let _ = f as fn();
|
|
}
|
|
|
|
fn test_function_var_to_numeric_cast() {
|
|
let abc: fn() -> String = foo;
|
|
|
|
let _ = abc as i8;
|
|
let _ = abc as i16;
|
|
let _ = abc as i32;
|
|
let _ = abc as i64;
|
|
let _ = abc as i128;
|
|
let _ = abc as isize;
|
|
|
|
let _ = abc as u8;
|
|
let _ = abc as u16;
|
|
let _ = abc as u32;
|
|
let _ = abc as u64;
|
|
let _ = abc as u128;
|
|
|
|
// Casting to usize is OK and should not warn
|
|
let _ = abc as usize;
|
|
}
|
|
|
|
fn fn_with_fn_args(f: fn(i32) -> i32) -> i32 {
|
|
f as i32
|
|
}
|
|
|
|
fn main() {}
|