]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/explicit-self-generic.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[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 #![allow(unknown_features)]
12 #![feature(box_syntax)]
13
14 #[derive(Copy)]
15 struct LM { resize_at: uint, size: uint }
16
17 enum HashMap<K,V> {
18     HashMap_(LM, Vec<(K,V)>)
19 }
20
21 fn linear_map<K,V>() -> HashMap<K,V> {
22     HashMap::HashMap_(LM{
23         resize_at: 32,
24         size: 0}, Vec::new())
25 }
26
27 impl<K,V> HashMap<K,V> {
28     pub fn len(&mut self) -> uint {
29         match *self {
30             HashMap::HashMap_(ref l, _) => l.size
31         }
32     }
33 }
34
35 pub fn main() {
36     let mut m = box linear_map::<(),()>();
37     assert_eq!(m.len(), 0);
38 }