Add #[fundamental] annotations into libcore so that Sized and the

`Fn` traits are considered fundamental, along with `Box` (though that is
mostly for show; the real type is `~T` in the compiler).
This commit is contained in:
Niko Matsakis
2015-03-30 17:52:00 -04:00
parent 03d3ba7667
commit 35c261aea0
5 changed files with 9 additions and 0 deletions

View File

@@ -71,6 +71,8 @@
#![feature(no_std)]
#![no_std]
#![feature(allocator)]
#![feature(custom_attribute)]
#![feature(fundamental)]
#![feature(lang_items, unsafe_destructor)]
#![feature(box_syntax)]
#![feature(optin_builtin_traits)]