| LL| |#![feature(rustc_attrs)] | |
| LL| |//@ edition: 2024 | |
| LL| | | |
| LL| |// Check that instrumenting a crate with a comptime function doesn't ICE. | |
| LL| |// (The function itself doesn't need to be instrumented, and probably shouldn't be.) | |
| LL| |// Regression test for <https://github.com/rust-lang/rust/pull/161808>. | |
| LL| | | |
| LL| |#[rustc_comptime] | |
| LL| |fn comptime_fn() {} | |
| LL| | | |
| LL| 1|fn main() {} | |