]> git.lizzy.rs Git - rust.git/blob - src/test/ui/auxiliary/xc_private_method_lib.rs
Move parse-fail tests to UI
[rust.git] / src / test / ui / auxiliary / xc_private_method_lib.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 #![crate_type="lib"]
12
13 pub struct Struct {
14     pub x: isize
15 }
16
17 impl Struct {
18     fn static_meth_struct() -> Struct {
19         Struct { x: 1 }
20     }
21
22     fn meth_struct(&self) -> isize {
23         self.x
24     }
25 }
26
27 pub enum Enum {
28     Variant1(isize),
29     Variant2(isize)
30 }
31
32 impl Enum {
33     fn static_meth_enum() -> Enum {
34         Enum::Variant2(10)
35     }
36
37     fn meth_enum(&self) -> isize {
38         match *self {
39             Enum::Variant1(x) |
40             Enum::Variant2(x) => x
41         }
42     }
43 }