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)]
This commit is contained in:
Philipp Krones 2018-12-12 18:17:01 +01:00 committed by GitHub
commit b7a431ea1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,8 +9,8 @@
//! Test casts for alignment issues
#![feature(libc)]
#![feature(rustc_private)]
extern crate libc;
#[warn(clippy::cast_ptr_alignment)]