Skip to content

Commit 559f63a

Browse files
committed
Merge remote-tracking branch 'origin/master' into rustup
2 parents 4a98f64 + f86c706 commit 559f63a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ cargo_miri = ["cargo_metadata"]
4545
rustc_tests = []
4646

4747
[dev-dependencies]
48-
compiletest_rs = { version = "0.3.12", features = ["tmp"] }
48+
compiletest_rs = { version = "0.3.16", features = ["tmp"] }
4949
colored = "1.6"

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2018-10-22
1+
nightly-2018-10-29

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ pub fn eval_main<'a, 'tcx: 'a>(
185185
let e = e.to_string();
186186
let msg = format!("constant evaluation error: {}", e);
187187
let mut err = struct_error(ecx.tcx.tcx.at(span), msg.as_str());
188-
let (frames, span) = ecx.generate_stacktrace(None);
188+
let frames = ecx.generate_stacktrace(None);
189189
err.span_label(span, e);
190190
for FrameInfo { span, location, .. } in frames {
191191
err.span_note(span, &format!("inside call to `{}`", location));

0 commit comments

Comments
 (0)