]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-4382.rs
Auto merge of #95315 - compiler-errors:pointee-fix, r=pnkfelix
[rust.git] / src / tools / rustfmt / tests / target / issue-4382.rs
1 pub const NAME_MAX: usize = {
2     #[cfg(target_os = "linux")]
3     {
4         1024
5     }
6     #[cfg(target_os = "freebsd")]
7     {
8         255
9     }
10 };