]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/const-block-item.rs
rollup merge of #20482: kmcallister/macro-reform
[rust.git] / src / test / run-pass / const-block-item.rs
1 // Copyright 2014 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 mod foo {
12     pub trait Value {
13         fn value(&self) -> uint;
14     }
15 }
16
17 static BLOCK_USE: uint = {
18     use foo::Value;
19     100
20 };
21
22 static BLOCK_PUB_USE: uint = {
23     pub use foo::Value;
24     200
25 };
26
27 static BLOCK_STRUCT_DEF: uint = {
28     struct Foo {
29         a: uint
30     }
31     Foo{ a: 300 }.a
32 };
33
34 static BLOCK_FN_DEF: fn(uint) -> uint = {
35     fn foo(a: uint) -> uint {
36         a + 10
37     }
38     foo
39 };
40
41 static BLOCK_MACRO_RULES: uint = {
42     macro_rules! baz {
43         () => (412)
44     }
45     baz!()
46 };
47
48 pub fn main() {
49     assert_eq!(BLOCK_USE, 100);
50     assert_eq!(BLOCK_PUB_USE, 200);
51     assert_eq!(BLOCK_STRUCT_DEF, 300);
52     assert_eq!(BLOCK_FN_DEF(390), 400);
53     assert_eq!(BLOCK_MACRO_RULES, 412);
54 }