blob: a258f7d31a191baa8228dc4815905d907cd8ce9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// tidy-alphabetical-start
#![allow(internal_features)]
#![feature(no_core)]
#![feature(profiler_runtime)]
#![feature(staged_api)]
// tidy-alphabetical-end
// Other attributes:
#![no_core]
#![profiler_runtime]
#![unstable(
feature = "profiler_runtime_lib",
reason = "internal implementation detail of rustc right now",
issue = "none"
)]
|