We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b008633 commit 4da35b5Copy full SHA for 4da35b5
base/src/ast.rs
@@ -90,6 +90,7 @@ pub struct AstType<'ast, Id> {
90
// Workaround https://github.com/rust-lang/rust/issues/70083
91
unsafe impl<'ast, Id> Send for AstType<'ast, Id> where Id: Send {}
92
unsafe impl<'ast, Id> Sync for AstType<'ast, Id> where Id: Sync {}
93
+impl<'ast, Id> std::panic::RefUnwindSafe for AstType<'ast, Id> where Id: std::panic::RefUnwindSafe {}
94
95
impl<'ast, Id> Deref for AstType<'ast, Id> {
96
type Target = Type<Id, AstType<'ast, Id>>;
0 commit comments