You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The extension method test in run-pass/mir_trans_calls.rs does not actually test the MIR translation path because the #[rustc_mir] attribute on the function is not picked up.
There is already PR #30661 that fixes the ignoring of attributes on generic functions. Once it has landed, the test method can be used in its current form. Otherwise it would have to be rewritten in a non-generic way.
The text was updated successfully, but these errors were encountered:
…sakis
Fixesrust-lang#30674
The test seems to work fine and assertion passes. The test seems to also be generated from MIR (LLVM IR has footprint of MIR translator), thus I’m reenabling it.
The extension method test in
run-pass/mir_trans_calls.rs
does not actually test the MIR translation path because the#[rustc_mir]
attribute on the function is not picked up.There is already PR #30661 that fixes the ignoring of attributes on generic functions. Once it has landed, the test method can be used in its current form. Otherwise it would have to be rewritten in a non-generic way.
The text was updated successfully, but these errors were encountered: