We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can we have the following API in FnDef?
FnDef
impl FnDef { pub fn is_intrinsic(&self) -> bool { with(|cx| cx.is_intrinsic(*self)) } }
and
pub trait Context { fn is_intrinsic(&self, def: FnDef) -> bool; }
The text was updated successfully, but these errors were encountered:
@rustbot claim
Sorry, something went wrong.
Rollup merge of rust-lang#125336 - momvart:smir-77-intrinsic, r=celinval
c700590
Add dedicated definition for intrinsics Closes rust-lang/project-stable-mir#77
Unrolled build for rust-lang#125336
5f909bc
Rollup merge of rust-lang#125336 - momvart:smir-77-intrinsic, r=celinval Add dedicated definition for intrinsics Closes rust-lang/project-stable-mir#77
momvart
Successfully merging a pull request may close this issue.
Can we have the following API in
FnDef
?and
The text was updated successfully, but these errors were encountered: