2018-05-07 02:24:45 -05:00
|
|
|
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// 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(as_cell)]
|
|
|
|
|
|
|
|
use std::cell::Cell;
|
|
|
|
|
|
|
|
fn main() {
|
2018-05-28 01:35:12 -05:00
|
|
|
let slice: &mut [i32] = &mut [1, 2, 3];
|
2018-05-07 02:24:45 -05:00
|
|
|
let cell_slice: &Cell<[i32]> = Cell::from_mut(slice);
|
2018-07-23 06:20:50 -05:00
|
|
|
let slice_cell: &[Cell<i32>] = cell_slice.as_slice_of_cells();
|
2018-05-28 01:35:12 -05:00
|
|
|
|
2018-07-23 06:20:50 -05:00
|
|
|
assert_eq!(slice_cell.len(), 3);
|
2018-05-07 02:24:45 -05:00
|
|
|
}
|