]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/class-exports.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[rust.git] / src / test / run-pass / class-exports.rs
1 // Copyright 2012-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 // pretty-expanded FIXME #23616
12
13 /* Test that exporting a class also exports its
14    public fields and methods */
15
16 use kitty::cat;
17
18 mod kitty {
19     pub struct cat {
20         meows: uint,
21         name: String,
22     }
23
24     impl cat {
25         pub fn get_name(&self) -> String { self.name.clone() }
26     }
27
28     pub fn cat(in_name: String) -> cat {
29         cat {
30             name: in_name,
31             meows: 0
32         }
33     }
34 }
35
36 pub fn main() {
37   assert_eq!(cat("Spreckles".to_string()).get_name(),
38                  "Spreckles".to_string());
39 }