rust/tests/ui/min_max.rs

47 lines
1.0 KiB
Rust
Raw Normal View History

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