summaryrefslogtreecommitdiffstats
path: root/tests/run-make/coverage/issue-85461.rs
blob: a1b9ebb1ed34876c72ca926b36eac46595244c81 (plain)
1
2
3
4
5
6
7
8
9
10
// Regression test for #85461: MSVC sometimes fail to link with dead code and #[inline(always)]

extern crate inline_always_with_dead_code;

use inline_always_with_dead_code::{bar, baz};

fn main() {
    bar::call_me();
    baz::call_me();
}