Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 188e693

Browse files
committedMar 26, 2018
Auto merge of #49101 - mark-i-m:stabilize_i128, r=nagisa
Stabilize 128-bit integers 🎉 cc #35118 EDIT: This should be merged only after the following have been merged: - [x] rust-lang/compiler-builtins#236 - [x] rust-lang/book#1230
2 parents ab8b961 + 140bf94 commit 188e693

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+106
-301
lines changed
 

‎src/doc/unstable-book/src/language-features/i128-type.md

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# `repr128`
2+
3+
The tracking issue for this feature is: [#35118]
4+
5+
[#35118]: https://github.com/rust-lang/rust/issues/35118
6+
7+
------------------------
8+
9+
The `repr128` feature adds support for `#[repr(u128)]` on `enum`s.
10+
11+
```rust
12+
#![feature(repr128)]
13+
14+
#[repr(u128)]
15+
enum Foo {
16+
Bar(u64),
17+
}
18+
```

0 commit comments

Comments
 (0)
Please sign in to comment.