mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 05:51:32 +00:00
13 lines
322 B
Rust
13 lines
322 B
Rust
// Regression test for issue #117244.
|
|
#![feature(const_trait_impl, effects)]
|
|
|
|
trait NonConst {}
|
|
|
|
const fn perform<T: ~const NonConst>() {}
|
|
//~^ ERROR `~const` can only be applied to `#[const_trait]` traits
|
|
|
|
fn operate<T: const NonConst>() {}
|
|
//~^ ERROR `const` can only be applied to `#[const_trait]` traits
|
|
|
|
fn main() {}
|