Rollup merge of #58219 - taiki-e:librustc_asan-2018, r=Centril

librustc_asan => 2018

Transitions `librustc_asan` to Rust 2018; cc #58099

r? @Centril
This commit is contained in:
kennytm 2019-02-07 13:57:50 +08:00 committed by GitHub
commit c1123aac4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View file

@ -3,6 +3,7 @@ authors = ["The Rust Project Developers"]
build = "build.rs"
name = "rustc_asan"
version = "0.0.0"
edition = "2018"
[lib]
name = "rustc_asan"

View file

@ -1,6 +1,3 @@
extern crate build_helper;
extern crate cmake;
use std::env;
use build_helper::sanitizer_lib_boilerplate;

View file

@ -1,8 +1,9 @@
#![sanitizer_runtime]
#![feature(nll)]
#![feature(sanitizer_runtime)]
#![feature(staged_api)]
#![no_std]
#![unstable(feature = "sanitizer_runtime_lib",
reason = "internal implementation detail of sanitizers",
issue = "0")]
#![deny(rust_2018_idioms)]