2024-06-25 10:44:00 +00:00
|
|
|
#![allow(incomplete_features)]
|
2024-10-30 18:03:44 +00:00
|
|
|
#![feature(generic_const_exprs, const_trait_impl)]
|
2024-06-25 10:44:00 +00:00
|
|
|
|
|
|
|
|
const fn with_positive<F: ~const Fn()>() {}
|
|
|
|
|
//~^ ERROR `~const` can only be applied to `#[const_trait]` traits
|
2024-10-20 19:49:11 +00:00
|
|
|
//~| ERROR `~const` can only be applied to `#[const_trait]` traits
|
2024-06-25 10:44:00 +00:00
|
|
|
|
|
|
|
|
pub fn main() {}
|