4300d4d2fa
Conflicts: src/libcore/core.rc src/libcore/hashmap.rs src/libcore/num/f32.rs src/libcore/num/f64.rs src/libcore/num/float.rs src/libcore/num/int-template.rs src/libcore/num/num.rs src/libcore/num/strconv.rs src/libcore/num/uint-template.rs src/libcore/ops.rs src/libcore/os.rs src/libcore/prelude.rs src/libcore/rt/mod.rs src/libcore/unstable/lang.rs src/librustc/driver/session.rs src/librustc/middle/astencode.rs src/librustc/middle/borrowck/check_loans.rs src/librustc/middle/borrowck/gather_loans.rs src/librustc/middle/borrowck/loan.rs src/librustc/middle/borrowck/preserve.rs src/librustc/middle/liveness.rs src/librustc/middle/mem_categorization.rs src/librustc/middle/region.rs src/librustc/middle/trans/base.rs src/librustc/middle/trans/inline.rs src/librustc/middle/trans/reachable.rs src/librustc/middle/typeck/check/_match.rs src/librustc/middle/typeck/check/regionck.rs src/librustc/util/ppaux.rs src/libstd/arena.rs src/libstd/ebml.rs src/libstd/json.rs src/libstd/serialize.rs src/libstd/std.rc src/libsyntax/ast_map.rs src/libsyntax/parse/parser.rs src/test/compile-fail/borrowck-uniq-via-box.rs src/test/compile-fail/regions-infer-borrow-scope-within-loop.rs src/test/run-pass/borrowck-nested-calls.rs
43 lines
890 B
Rust
43 lines
890 B
Rust
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
struct Foo {
|
|
x: int,
|
|
}
|
|
|
|
pub impl Foo {
|
|
fn f(&self) {}
|
|
fn g(&const self) {}
|
|
fn h(&mut self) {}
|
|
}
|
|
|
|
fn a(x: &mut Foo) {
|
|
x.f();
|
|
x.g();
|
|
x.h();
|
|
}
|
|
|
|
fn b(x: &Foo) {
|
|
x.f();
|
|
x.g();
|
|
x.h(); //~ ERROR cannot borrow
|
|
}
|
|
|
|
fn c(x: &const Foo) {
|
|
x.f(); //~ ERROR cannot borrow
|
|
//~^ ERROR unsafe borrow
|
|
x.g();
|
|
x.h(); //~ ERROR cannot borrow
|
|
//~^ ERROR unsafe borrow
|
|
}
|
|
|
|
fn main() {
|
|
}
|