Files
rust/tests/ui/attributes/inline-main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
110 B
Rust
Raw Normal View History

2025-06-12 18:29:22 +05:00
//! Test that #[inline(always)] can be applied to main function
//@ run-pass
#[inline(always)]
fn main() {}