1
Fork 0

Sort and separate lint/feature attributes in profiler_builtins

This commit is contained in:
Zalathar 2024-11-23 16:11:02 +11:00
parent e6f1ca6752
commit 7d2d11b595

View file

@ -1,11 +1,15 @@
#![no_std] // tidy-alphabetical-start
#![allow(internal_features)]
#![allow(unused_features)]
#![feature(profiler_runtime)] #![feature(profiler_runtime)]
#![feature(staged_api)]
// tidy-alphabetical-end
// Other attributes:
#![no_std]
#![profiler_runtime] #![profiler_runtime]
#![unstable( #![unstable(
feature = "profiler_runtime_lib", feature = "profiler_runtime_lib",
reason = "internal implementation detail of rustc right now", reason = "internal implementation detail of rustc right now",
issue = "none" issue = "none"
)] )]
#![allow(unused_features)]
#![allow(internal_features)]
#![feature(staged_api)]