Removed remnants of @mut and ~mut from comments and the type system.

This commit is contained in:
Eduard Burtescu 2014-01-12 02:25:51 +02:00
parent 68ebe8141a
commit 509fc92a9b
39 changed files with 191 additions and 262 deletions

View file

@ -1,4 +1,4 @@
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
@ -11,5 +11,6 @@
struct S;
impl S {
fn f(~mut self) {} //~ ERROR mutability declaration not allowed here
fn f(~mut self) {} //~ ERROR found `self` in ident position
//~^ ERROR expected `:` but found `)`
}