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