]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/private-method.rs
New upstream version 1.24.1+dfsg1
[rustc.git] / src / test / compile-fail / private-method.rs
CommitLineData
223e47cc
LB
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// error-pattern:method `nap` is private
12
13mod kitties {
14 pub struct cat {
1a4d82fc 15 meows : usize,
223e47cc 16
1a4d82fc 17 how_hungry : isize,
223e47cc
LB
18 }
19
970d7e83 20 impl cat {
1a4d82fc 21 fn nap(&self) {}
223e47cc
LB
22 }
23
1a4d82fc 24 pub fn cat(in_x : usize, in_y : isize) -> cat {
223e47cc
LB
25 cat {
26 meows: in_x,
27 how_hungry: in_y
28 }
29 }
30}
31
32fn main() {
c34b1796 33 let nyan : kitties::cat = kitties::cat(52, 99);
223e47cc
LB
34 nyan.nap();
35}