From 80465334aa2d371b368b5d734cdcc1061d895ffb Mon Sep 17 00:00:00 2001 From: "Felix S. Klock II" Date: Tue, 21 Jul 2015 14:32:11 +0200 Subject: [PATCH] Update `issue-14084.rs` test to reflect changes to error output. --- src/test/compile-fail/issue-14084.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/compile-fail/issue-14084.rs b/src/test/compile-fail/issue-14084.rs index 003c6644f7f0..8e566d7aafa6 100644 --- a/src/test/compile-fail/issue-14084.rs +++ b/src/test/compile-fail/issue-14084.rs @@ -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 }