2024-11-23 16:11:02 +11:00
|
|
|
// tidy-alphabetical-start
|
|
|
|
|
#![allow(internal_features)]
|
2024-11-23 16:14:40 +11:00
|
|
|
#![feature(no_core)]
|
2017-07-17 09:32:08 -07:00
|
|
|
#![feature(profiler_runtime)]
|
2024-11-23 16:11:02 +11:00
|
|
|
#![feature(staged_api)]
|
|
|
|
|
// tidy-alphabetical-end
|
|
|
|
|
|
|
|
|
|
// Other attributes:
|
2024-11-23 16:14:40 +11:00
|
|
|
#![no_core]
|
2017-07-17 09:32:08 -07:00
|
|
|
#![profiler_runtime]
|
2017-02-13 09:57:50 +00:00
|
|
|
#![unstable(
|
|
|
|
|
feature = "profiler_runtime_lib",
|
|
|
|
|
reason = "internal implementation detail of rustc right now",
|
2019-12-21 13:16:18 +02:00
|
|
|
issue = "none"
|
|
|
|
|
)]
|