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