Skip to content

Commit

Permalink
Disable backtrace test until converted to provider API
Browse files Browse the repository at this point in the history
Fails to build starting on nightly-2022-08-03.

    error[E0599]: no method named `backtrace` found for struct `anyhow::Error` in the current scope
      --> tests/test_backtrace.rs:12:19
       |
    12 |     let _ = error.backtrace();
       |                   ^^^^^^^^^ method not found in `anyhow::Error`
  • Loading branch information
dtolnay committed Aug 3, 2022
1 parent 08f8012 commit e55761e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_backtrace.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// FIXME: needs to be updated to provide_ref/request_ref API.
// https://github.com/rust-lang/rust/pull/99431
#![cfg(any())]

#[rustversion::not(nightly)]
#[ignore]
#[test]
Expand Down

0 comments on commit e55761e

Please sign in to comment.