File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 1
- // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
1
+ // Copyright 2014-2015 The Rust Project Developers. See the COPYRIGHT
2
2
// file at the top-level directory of this distribution and at
3
3
// http://rust-lang.org/COPYRIGHT.
4
4
//
12
12
#[ macro_export]
13
13
#[ stable]
14
14
macro_rules! vec {
15
+ ( $x: expr; $y: expr) => ( {
16
+ let xs: $crate:: boxed:: Box <[ _] > = $crate:: boxed:: Box :: new( [ $x; $y] ) ;
17
+ $crate:: slice:: SliceExt :: into_vec( xs)
18
+ } ) ;
15
19
( $( $x: expr) ,* ) => ( {
16
20
let xs: $crate:: boxed:: Box <[ _] > = $crate:: boxed:: Box :: new( [ $( $x) ,* ] ) ;
17
21
$crate:: slice:: SliceExt :: into_vec( xs)
Original file line number Diff line number Diff line change
1
+ // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2
+ // file at the top-level directory of this distribution and at
3
+ // http://rust-lang.org/COPYRIGHT.
4
+ //
5
+ // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+ // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+ // option. This file may not be copied, modified, or distributed
9
+ // except according to those terms.
10
+
11
+
12
+ pub fn main ( ) {
13
+ assert_eq ! ( vec![ 1 ; 3 ] , vec![ 1 , 1 , 1 ] ) ;
14
+ assert_eq ! ( vec![ 1 ; 2 ] , vec![ 1 , 1 ] ) ;
15
+ assert_eq ! ( vec![ 1 ; 1 ] , vec![ 1 ] ) ;
16
+ assert_eq ! ( vec![ 1 ; 0 ] , vec![ ] ) ;
17
+ }
You can’t perform that action at this time.
0 commit comments