]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_error_codes/error_codes/E0589.md
Clean up E0589 explanation
[rust.git] / src / librustc_error_codes / error_codes / E0589.md
index 5e15a875b0ba79361492ce4fcd84c808a1831816..8a4f8d2172585021034ebfe4e10a7f8bf2cc861a 100644 (file)
@@ -1,6 +1,8 @@
 The value of `N` that was specified for `repr(align(N))` was not a power
 of two, or was greater than 2^29.
 
+Erroneous code example:
+
 ```compile_fail,E0589
 #[repr(align(15))] // error: invalid `repr(align)` attribute: not a power of two
 enum Foo {