mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-08 13:35:48 +00:00
14 lines
218 B
Rust
14 lines
218 B
Rust
#![feature(const_trait_impl)]
|
|
#![allow(bare_trait_objects)]
|
|
|
|
struct S;
|
|
trait T {}
|
|
|
|
impl const S {}
|
|
//~^ ERROR inherent impls cannot be `const`
|
|
|
|
impl const T {}
|
|
//~^ ERROR inherent impls cannot be `const`
|
|
|
|
fn main() {}
|