diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2018-12-22 10:54:38 +0100 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2018-12-22 10:54:38 +0100 |
| commit | 6e5d9abe9cd0aba8e1c97528d4d91732f63dc58e (patch) | |
| tree | d5ef4aed109af5d28a979cde4b63c11ffa4894f2 /build_sysroot | |
| parent | 64d42573876407db4fa466bacf99fde85668fccf (diff) | |
| download | rust-6e5d9abe9cd0aba8e1c97528d4d91732f63dc58e.tar.gz rust-6e5d9abe9cd0aba8e1c97528d4d91732f63dc58e.zip | |
Rustup to rustc 1.33.0-nightly (e40548bc4 2018-12-21)
Diffstat (limited to 'build_sysroot')
| -rw-r--r-- | build_sysroot/compiler_builtins/lib.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build_sysroot/compiler_builtins/lib.rs b/build_sysroot/compiler_builtins/lib.rs index 90a118deeef..79a54a3a4b8 100644 --- a/build_sysroot/compiler_builtins/lib.rs +++ b/build_sysroot/compiler_builtins/lib.rs @@ -1,3 +1,9 @@ -#![feature(compiler_builtins)] +#![feature(compiler_builtins, staged_api)] #![compiler_builtins] #![no_std] + +#![unstable( + feature = "compiler_builtins_lib", + reason = "Compiler builtins. Will never become stable.", + issue = "0" +)] |
