]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/explicit-self-generic.rs
auto merge of #19628 : jbranchaud/rust/add-string-as-string-doctest, r=steveklabnik
[rust.git] / src / test / run-pass / explicit-self-generic.rs
1 // Copyright 2012 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  * A function that returns a hash of a value
13  *
14  * The hash should concentrate entropy in the lower bits.
15  */
16 type HashFn<K> = proc(K):'static -> uint;
17 type EqFn<K> = proc(K, K):'static -> bool;
18
19 struct LM { resize_at: uint, size: uint }
20
21 impl Copy for LM {}
22
23 enum HashMap<K,V> {
24     HashMap_(LM)
25 }
26
27 impl<K,V> Copy for HashMap<K,V> {}
28
29 fn linear_map<K,V>() -> HashMap<K,V> {
30     HashMap::HashMap_(LM{
31         resize_at: 32,
32         size: 0})
33 }
34
35 impl<K,V> HashMap<K,V> {
36     pub fn len(&mut self) -> uint {
37         match *self {
38             HashMap::HashMap_(l) => l.size
39         }
40     }
41 }
42
43 pub fn main() {
44     let mut m = box linear_map::<(),()>();
45     assert_eq!(m.len(), 0);
46 }