]> git.lizzy.rs Git - rust.git/blob - tests/source/issue-4382.rs
fix: use correct spans for params with attrs
[rust.git] / tests / source / issue-4382.rs
1 pub const NAME_MAX: usize = {
2     #[cfg(target_os = "linux")]   { 1024 }
3     #[cfg(target_os = "freebsd")] {  255 }
4 };