e78f2e2ac5
For bootstrapping purposes, this commit does not remove all uses of the keyword "pure" -- doing so would cause the compiler to no longer bootstrap due to some syntax extensions ("deriving" in particular). Instead, it makes the compiler ignore "pure". Post-snapshot, we can remove "pure" from the language. There are quite a few (~100) borrow check errors that were essentially all the result of mutable fields or partial borrows of `@mut`. Per discussions with Niko I think we want to allow partial borrows of `@mut` but detect obvious footguns. We should also improve the error message when `@mut` is erroneously reborrowed.
36 lines
1.1 KiB
Rust
36 lines
1.1 KiB
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.
|
|
|
|
trait Mumbo {
|
|
fn jumbo(&self, x: @uint) -> uint;
|
|
fn jambo(&self, x: @const uint) -> uint;
|
|
fn jbmbo(&self) -> @uint;
|
|
}
|
|
|
|
impl Mumbo for uint {
|
|
// Cannot have a larger effect than the trait:
|
|
unsafe fn jumbo(&self, x: @uint) { *self + *x; }
|
|
//~^ ERROR expected impure fn but found unsafe fn
|
|
|
|
// Cannot accept a narrower range of parameters:
|
|
fn jambo(&self, x: @uint) { *self + *x; }
|
|
//~^ ERROR values differ in mutability
|
|
|
|
// Cannot return a wider range of values:
|
|
fn jbmbo(&self) -> @const uint { @const 0 }
|
|
//~^ ERROR values differ in mutability
|
|
}
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
|