]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0589.md
Auto merge of #68154 - ssomers:btreemap_navigation_benches, r=Mark-Simulacrum
[rust.git] / src / librustc_error_codes / error_codes / E0589.md
1 The value of `N` that was specified for `repr(align(N))` was not a power
2 of two, or was greater than 2^29.
3
4 ```compile_fail,E0589
5 #[repr(align(15))] // error: invalid `repr(align)` attribute: not a power of two
6 enum Foo {
7     Bar(u64),
8 }
9 ```