diff options
| author | Ralf Jung <post@ralfj.de> | 2023-08-27 19:07:17 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2023-08-29 14:11:50 +0200 |
| commit | a6ccd265e6b0cad3107187fccbfee24d08158385 (patch) | |
| tree | ab2afbb51e9f0a1ec5cb2055eaae1710aa301379 | |
| parent | 9dd682803fbf1528034ad0e254b29a8540205e02 (diff) | |
| download | rust-a6ccd265e6b0cad3107187fccbfee24d08158385.tar.gz rust-a6ccd265e6b0cad3107187fccbfee24d08158385.zip | |
mark error code as removed
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0691.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0691.md b/compiler/rustc_error_codes/src/error_codes/E0691.md index 483c74c0ff5..a5bedd61e92 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0691.md +++ b/compiler/rustc_error_codes/src/error_codes/E0691.md @@ -1,9 +1,11 @@ +#### Note: this error code is no longer emitted by the compiler. + A struct, enum, or union with the `repr(transparent)` representation hint contains a zero-sized field that requires non-trivial alignment. Erroneous code example: -```compile_fail,E0691 +```ignore (error is no longer emitted) #![feature(repr_align)] #[repr(align(32))] |
