mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +00:00
9 lines
288 B
Rust
9 lines
288 B
Rust
#![allow(incomplete_features)]
|
|
#![feature(generic_const_exprs, const_trait_impl, effects)]
|
|
|
|
const fn with_positive<F: ~const Fn()>() {}
|
|
//~^ ERROR `~const` can only be applied to `#[const_trait]` traits
|
|
//~| ERROR `~const` can only be applied to `#[const_trait]` traits
|
|
|
|
pub fn main() {}
|