Files
rust/src/doc
bors 61a60ce7d3 Auto merge of #61229 - Centril:stabilize-repr_align_enum, r=nagisa
Stabilize #![feature(repr_align_enum)] in Rust 1.37.0

On an `enum` item, you may now write:

```rust
#[repr(align(X))]
enum Foo {
    // ...
}
```

This has equivalent effects to first defining:

```rust
#[repr(align(X))]
struct AlignX<T>(T);
```

and then using `AlignX<Foo>` in `Foo`'s stead.

r? @nagisa
2019-06-09 23:50:04 +00:00
..
2019-06-04 14:41:36 -07:00
2019-05-15 15:56:47 -07:00
2019-06-04 14:41:36 -07:00
2019-05-15 15:56:47 -07:00
2019-06-04 14:41:36 -07:00
2019-06-04 14:41:36 -07:00
2019-06-04 14:41:36 -07:00
2019-02-05 15:32:59 +01:00
2015-04-18 17:55:31 -04:00
2018-10-05 08:52:44 -07:00
2017-02-21 14:03:13 -05:00
2019-03-24 22:06:34 -04:00
2019-04-18 06:20:07 +09:00
2015-01-21 14:59:25 -05:00
2018-05-17 12:25:24 -07:00