]> git.lizzy.rs Git - rust.git/blob - tests/source/issue-4382.rs
Fix typos “an”→“a” and a few different ones that appeared in the same search
[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 };