This commit is contained in:
Oli Scherer 2024-03-14 13:54:00 +00:00
parent e69f14b14c
commit 54d83beb38

View File

@ -0,0 +1,10 @@
//! This test checks that we do not monomorphize functions that are only
//! used to evaluate static items, but never used in runtime code.
//@compile-flags: --crate-type=lib -Copt-level=0
const fn foo() {}
pub static FOO: () = foo();
// CHECK: define{{.*}}foo{{.*}}