diff options
| author | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-07-21 14:32:11 +0200 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-07-22 15:34:00 +0200 |
| commit | 80465334aa2d371b368b5d734cdcc1061d895ffb (patch) | |
| tree | abe5edfba6f807fd72ae48062a295647af8ce728 | |
| parent | a9d79978b60a2433620dce2624202f2e120efaf1 (diff) | |
| download | rust-80465334aa2d371b368b5d734cdcc1061d895ffb.tar.gz rust-80465334aa2d371b368b5d734cdcc1061d895ffb.zip | |
Update `issue-14084.rs` test to reflect changes to error output.
| -rw-r--r-- | src/test/compile-fail/issue-14084.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/compile-fail/issue-14084.rs b/src/test/compile-fail/issue-14084.rs index 003c6644f7f..8e566d7aafa 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 } |
