rust/src/test/run-pass/new-box-syntax.rs

34 lines
963 B
Rust
Raw Normal View History

2014-02-05 16:33:10 -06:00
// Copyright 2014 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.
// pretty-expanded FIXME #23616
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
#![allow(unknown_features)]
#![feature(box_syntax, alloc)]
2014-10-02 00:10:09 -05:00
// Tests that the new `box` syntax works with unique pointers.
use std::boxed::{Box, HEAP};
struct Structure {
x: isize,
y: isize,
}
2013-12-14 16:53:20 -06:00
pub fn main() {
let x: Box<isize> = box(HEAP) 2;
let y: Box<isize> = box 2;
let b: Box<isize> = box()(1 + 2);
2015-01-25 15:05:03 -06:00
let c = box()(3 + 4);
}