2023-08-13 09:02:31 +00:00
|
|
|
//@ check-pass
|
2024-06-21 12:22:29 +00:00
|
|
|
#![feature(const_trait_impl, effects)] //~ WARN the feature `effects` is incomplete
|
2023-08-13 09:02:31 +00:00
|
|
|
|
|
|
|
|
const fn a() {}
|
|
|
|
|
|
|
|
|
|
fn foo<F: FnOnce()>(a: F) {}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let _ = a;
|
|
|
|
|
foo(a);
|
|
|
|
|
}
|