rust/tests/ui/swap.rs

66 lines
1.1 KiB
Rust
Raw Normal View History

2018-10-07 00:18:06 +08: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-07-28 23:34:52 +08:00
#![warn(clippy::all)]
#![allow(clippy::blacklisted_name, unused_assignments)]
struct Foo(u32);
fn array() {
let mut foo = [1, 2];
2017-02-08 21:58:07 +08:00
let temp = foo[0];
foo[0] = foo[1];
foo[1] = temp;
2017-02-08 21:58:07 +08:00
foo.swap(0, 1);
}
fn slice() {
let foo = &mut [1, 2];
2017-02-08 21:58:07 +08:00
let temp = foo[0];
foo[0] = foo[1];
foo[1] = temp;
2017-02-08 21:58:07 +08:00
foo.swap(0, 1);
}
fn vec() {
let mut foo = vec![1, 2];
2017-02-08 21:58:07 +08:00
let temp = foo[0];
foo[0] = foo[1];
foo[1] = temp;
2017-02-08 21:58:07 +08:00
foo.swap(0, 1);
}
fn main() {
array();
slice();
vec();
let mut a = 42;
let mut b = 1337;
2017-02-08 21:58:07 +08:00
a = b;
b = a;
2018-12-10 06:26:16 +08:00
; let t = a;
a = b;
b = t;
2017-02-08 21:58:07 +08:00
let mut c = Foo(42);
2017-02-08 21:58:07 +08:00
c.0 = a;
a = c.0;
2018-12-10 06:26:16 +08:00
; let t = c.0;
c.0 = a;
a = t;
}