DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / vendor / thiserror-2.0.9 / tests / ui / unconditional-recursion.rs
123456789
use thiserror::Error; #[derive(Error, Debug)] #[error("{self}")] pub struct Error; fn main() { __FAIL__; }