mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 03:32:21 +00:00
9 lines
279 B
Rust
9 lines
279 B
Rust
#![allow(incomplete_features)]
|
|
#![feature(generic_const_exprs, const_trait_impl)]
|
|
|
|
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() {}
|