about summary refs log tree commit diff
path: root/tests/coverage/auxiliary/inline_mixed_helper.rs
blob: 1e91ab8ce7c036459567bbbcdd1f4d0c4e6b5e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ edition: 2021
//@ compile-flags: -Cinstrument-coverage=on

#[inline]
pub fn inline_me() {}

#[inline(never)]
pub fn no_inlining_please() {}

pub fn generic<T>() {}

// FIXME(#132436): Even though this doesn't ICE, it still produces coverage
// reports that undercount the affected code.