47 lines
1.0 KiB
Rust
47 lines
1.0 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.
|
|
|
|
|
|
|
|
|
|
|
|
#![warn(clippy::all)]
|
|
|
|
use std::cmp::{min, max};
|
|
use std::cmp::min as my_min;
|
|
use std::cmp::max as my_max;
|
|
|
|
const LARGE : usize = 3;
|
|
|
|
fn main() {
|
|
let x;
|
|
x = 2usize;
|
|
min(1, max(3, x));
|
|
min(max(3, x), 1);
|
|
max(min(x, 1), 3);
|
|
max(3, min(x, 1));
|
|
|
|
my_max(3, my_min(x, 1));
|
|
|
|
min(3, max(1, x)); // ok, could be 1, 2 or 3 depending on x
|
|
|
|
min(1, max(LARGE, x)); // no error, we don't lookup consts here
|
|
|
|
let y = 2isize;
|
|
min(max(y, -1), 3);
|
|
|
|
let s;
|
|
s = "Hello";
|
|
|
|
min("Apple", max("Zoo", s));
|
|
max(min(s, "Apple"), "Zoo");
|
|
|
|
max("Apple", min(s, "Zoo")); // ok
|
|
}
|