mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
109 lines
3.3 KiB
Rust
109 lines
3.3 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.
|
|
|
|
|
|
#![feature(integer_atomics)]
|
|
#![allow(clippy::blacklisted_name)]
|
|
#![deny(clippy::replace_consts)]
|
|
|
|
use std::sync::atomic::*;
|
|
use std::sync::{ONCE_INIT, Once};
|
|
|
|
#[rustfmt::skip]
|
|
fn bad() {
|
|
// Once
|
|
{ let foo = ONCE_INIT; };
|
|
// Atomic
|
|
{ let foo = ATOMIC_BOOL_INIT; };
|
|
{ let foo = ATOMIC_ISIZE_INIT; };
|
|
{ let foo = ATOMIC_I8_INIT; };
|
|
{ let foo = ATOMIC_I16_INIT; };
|
|
{ let foo = ATOMIC_I32_INIT; };
|
|
{ let foo = ATOMIC_I64_INIT; };
|
|
{ let foo = ATOMIC_USIZE_INIT; };
|
|
{ let foo = ATOMIC_U8_INIT; };
|
|
{ let foo = ATOMIC_U16_INIT; };
|
|
{ let foo = ATOMIC_U32_INIT; };
|
|
{ let foo = ATOMIC_U64_INIT; };
|
|
// Min
|
|
{ let foo = std::isize::MIN; };
|
|
{ let foo = std::i8::MIN; };
|
|
{ let foo = std::i16::MIN; };
|
|
{ let foo = std::i32::MIN; };
|
|
{ let foo = std::i64::MIN; };
|
|
{ let foo = std::i128::MIN; };
|
|
{ let foo = std::usize::MIN; };
|
|
{ let foo = std::u8::MIN; };
|
|
{ let foo = std::u16::MIN; };
|
|
{ let foo = std::u32::MIN; };
|
|
{ let foo = std::u64::MIN; };
|
|
{ let foo = std::u128::MIN; };
|
|
// Max
|
|
{ let foo = std::isize::MAX; };
|
|
{ let foo = std::i8::MAX; };
|
|
{ let foo = std::i16::MAX; };
|
|
{ let foo = std::i32::MAX; };
|
|
{ let foo = std::i64::MAX; };
|
|
{ let foo = std::i128::MAX; };
|
|
{ let foo = std::usize::MAX; };
|
|
{ let foo = std::u8::MAX; };
|
|
{ let foo = std::u16::MAX; };
|
|
{ let foo = std::u32::MAX; };
|
|
{ let foo = std::u64::MAX; };
|
|
{ let foo = std::u128::MAX; };
|
|
}
|
|
|
|
#[rustfmt::skip]
|
|
fn good() {
|
|
// Once
|
|
{ let foo = Once::new(); };
|
|
// Atomic
|
|
{ let foo = AtomicBool::new(false); };
|
|
{ let foo = AtomicIsize::new(0); };
|
|
{ let foo = AtomicI8::new(0); };
|
|
{ let foo = AtomicI16::new(0); };
|
|
{ let foo = AtomicI32::new(0); };
|
|
{ let foo = AtomicI64::new(0); };
|
|
{ let foo = AtomicUsize::new(0); };
|
|
{ let foo = AtomicU8::new(0); };
|
|
{ let foo = AtomicU16::new(0); };
|
|
{ let foo = AtomicU32::new(0); };
|
|
{ let foo = AtomicU64::new(0); };
|
|
// Min
|
|
{ let foo = isize::min_value(); };
|
|
{ let foo = i8::min_value(); };
|
|
{ let foo = i16::min_value(); };
|
|
{ let foo = i32::min_value(); };
|
|
{ let foo = i64::min_value(); };
|
|
{ let foo = i128::min_value(); };
|
|
{ let foo = usize::min_value(); };
|
|
{ let foo = u8::min_value(); };
|
|
{ let foo = u16::min_value(); };
|
|
{ let foo = u32::min_value(); };
|
|
{ let foo = u64::min_value(); };
|
|
{ let foo = u128::min_value(); };
|
|
// Max
|
|
{ let foo = isize::max_value(); };
|
|
{ let foo = i8::max_value(); };
|
|
{ let foo = i16::max_value(); };
|
|
{ let foo = i32::max_value(); };
|
|
{ let foo = i64::max_value(); };
|
|
{ let foo = i128::max_value(); };
|
|
{ let foo = usize::max_value(); };
|
|
{ let foo = u8::max_value(); };
|
|
{ let foo = u16::max_value(); };
|
|
{ let foo = u32::max_value(); };
|
|
{ let foo = u64::max_value(); };
|
|
{ let foo = u128::max_value(); };
|
|
}
|
|
|
|
fn main() {
|
|
bad();
|
|
good();
|
|
}
|