2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::all)]
|
2015-09-05 10:46:34 +00:00
|
|
|
|
2015-11-11 16:08:33 +00:00
|
|
|
use std::cmp::max as my_max;
|
2018-12-09 22:26:16 +00:00
|
|
|
use std::cmp::min as my_min;
|
|
|
|
use std::cmp::{max, min};
|
2015-09-05 10:46:34 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
const LARGE: usize = 3;
|
2015-09-05 14:24:41 +00:00
|
|
|
|
2015-09-05 10:46:34 +00:00
|
|
|
fn main() {
|
|
|
|
let x;
|
|
|
|
x = 2usize;
|
2017-02-08 13:58:07 +00:00
|
|
|
min(1, max(3, x));
|
|
|
|
min(max(3, x), 1);
|
|
|
|
max(min(x, 1), 3);
|
|
|
|
max(3, min(x, 1));
|
2015-09-05 10:46:34 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
my_max(3, my_min(x, 1));
|
2015-11-11 16:08:33 +00:00
|
|
|
|
2015-09-05 10:46:34 +00:00
|
|
|
min(3, max(1, x)); // ok, could be 1, 2 or 3 depending on x
|
|
|
|
|
2015-09-05 14:24:41 +00:00
|
|
|
min(1, max(LARGE, x)); // no error, we don't lookup consts here
|
|
|
|
|
2018-06-16 16:33:11 +00:00
|
|
|
let y = 2isize;
|
|
|
|
min(max(y, -1), 3);
|
|
|
|
|
2015-09-05 10:46:34 +00:00
|
|
|
let s;
|
|
|
|
s = "Hello";
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
min("Apple", max("Zoo", s));
|
|
|
|
max(min(s, "Apple"), "Zoo");
|
2015-09-05 10:46:34 +00:00
|
|
|
|
|
|
|
max("Apple", min(s, "Zoo")); // ok
|
|
|
|
}
|