2013-10-03 11:53:46 +02:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 17:32:48 -08:00
|
|
|
// 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.
|
|
|
|
|
2015-02-09 20:01:45 +01:00
|
|
|
// compile-flags: -Z parse-only
|
|
|
|
|
2013-10-03 11:53:46 +02:00
|
|
|
fn f() {
|
2014-05-05 18:56:44 -07:00
|
|
|
let a_box = box mut 42;
|
2014-08-29 09:18:05 +02:00
|
|
|
//~^ ERROR expected identifier, found keyword `mut`
|
2016-03-07 21:17:31 -05:00
|
|
|
//~^^ ERROR expected one of `!`, `.`, `::`, `;`, `?`, `{`, or an operator, found `42`
|
2013-02-14 11:47:00 -08:00
|
|
|
}
|