Update `issue-14084.rs` test to reflect changes to error output.

This commit is contained in:
Felix S. Klock II 2015-07-21 14:32:11 +02:00
parent a9d79978b6
commit 80465334aa
1 changed files with 3 additions and 1 deletions

View File

@ -9,8 +9,10 @@
// except according to those terms.
#![feature(box_syntax)]
#![feature(placement_in_syntax)]
fn main() {
box ( () ) 0;
//~^ ERROR: only the exchange heap is currently supported
//~^ ERROR: the trait `core::ops::Placer<_>` is not implemented
//~| ERROR: the trait `core::ops::Placer<_>` is not implemented
}