Merge pull request #351 from dtolnay/rawbacktrace

Add test of r#Backtrace that is not std::backtrace::Backtrace
This commit is contained in:
David Tolnay 2024-11-04 16:41:17 -05:00 committed by GitHub
commit 3d23842d35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,6 +21,11 @@ pub mod structs {
use std::sync::Arc; use std::sync::Arc;
use thiserror::Error; use thiserror::Error;
mod not_backtrace {
#[derive(Debug)]
pub struct Backtrace;
}
#[derive(Error, Debug)] #[derive(Error, Debug)]
#[error("...")] #[error("...")]
pub struct PlainBacktrace { pub struct PlainBacktrace {
@ -34,6 +39,12 @@ pub mod structs {
backtrace: Backtrace, backtrace: Backtrace,
} }
#[derive(Error, Debug)]
#[error("...")]
pub struct NotBacktrace {
backtrace: crate::structs::not_backtrace::r#Backtrace,
}
#[derive(Error, Debug)] #[derive(Error, Debug)]
#[error("...")] #[error("...")]
pub struct OptBacktrace { pub struct OptBacktrace {