diff options
| author | Philipp Krones <hello@philkrones.com> | 2018-12-12 18:17:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-12 18:17:01 +0100 |
| commit | b7a431ea1ddb96a396921bf9b5f2f6d8690cd474 (patch) | |
| tree | d169620cea7c60fe106e7179ac1b0539523a4504 | |
| parent | 0cabbbdbb842fd81e27992e87070810374917679 (diff) | |
| parent | 016c996e1610eaed2f47fd9a9396498b8adce047 (diff) | |
| download | rust-b7a431ea1ddb96a396921bf9b5f2f6d8690cd474.tar.gz rust-b7a431ea1ddb96a396921bf9b5f2f6d8690cd474.zip | |
Rollup merge of #3540 - matthiaskrgr:rustup, r=flip1995
rustup https://github.com/rust-lang/rust/pull/56092 fix ui test cast_alignment failure by adding #![feature(rustc_private)]
| -rw-r--r-- | tests/ui/cast_alignment.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/cast_alignment.rs b/tests/ui/cast_alignment.rs index efc56ea2bbc..77f50b3add2 100644 --- a/tests/ui/cast_alignment.rs +++ b/tests/ui/cast_alignment.rs @@ -9,8 +9,8 @@ //! Test casts for alignment issues -#![feature(libc)] +#![feature(rustc_private)] extern crate libc; #[warn(clippy::cast_ptr_alignment)] |
