about summary refs log tree commit diff
path: root/tests/ui/attributes/inline-main.rs
blob: 7181ee19b6711787317eccd5094e3598872c8351 (plain)
1
2
3
4
5
6
//! Test that #[inline(always)] can be applied to main function

//@ run-pass

#[inline(always)]
fn main() {}