Rustup to rustc 1.35.0-nightly (82e2f3ec2 2019-03-20)

This commit is contained in:
bjorn3 2019-03-21 20:24:46 +01:00
parent 788d8cec93
commit a715c79263
3 changed files with 141 additions and 23 deletions

View file

@ -1,10 +1,10 @@
#![feature(start, box_syntax, alloc_system, core_intrinsics, alloc, alloc_error_handler)]
#![feature(start, box_syntax, alloc_system, core_intrinsics, alloc, alloc_prelude, alloc_error_handler)]
#![no_std]
extern crate alloc;
extern crate alloc_system;
use alloc::prelude::*;
use alloc::prelude::v1::*;
use alloc_system::System;