]> git.lizzy.rs Git - rust.git/blob - tests/run-make/coverage/issue-85461.rs
Remove confusing 'while checking' note from opaque future type mismatches
[rust.git] / tests / run-make / coverage / issue-85461.rs
1 // Regression test for #85461: MSVC sometimes fail to link with dead code and #[inline(always)]
2
3 extern crate inline_always_with_dead_code;
4
5 use inline_always_with_dead_code::{bar, baz};
6
7 fn main() {
8     bar::call_me();
9     baz::call_me();
10 }