1
Fork 0
rust/library/profiler_builtins/src/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
281 B
Rust
Raw Normal View History

#![no_std]
#![feature(profiler_runtime)]
#![profiler_runtime]
#![unstable(
feature = "profiler_runtime_lib",
reason = "internal implementation detail of rustc right now",
issue = "none"
)]
#![allow(unused_features)]
2023-08-22 07:06:38 -04:00
#![allow(internal_features)]
#![feature(staged_api)]