]> git.proxmox.com Git - rustc.git/blame - tests/ui/rfc-2632-const-trait-impl/inherent-impl.rs
New upstream version 1.71.1+dfsg1
[rustc.git] / tests / ui / rfc-2632-const-trait-impl / inherent-impl.rs
CommitLineData
dfeec247 1#![feature(const_trait_impl)]
dfeec247
XL
2#![allow(bare_trait_objects)]
3
4struct S;
5trait T {}
6
7impl const S {}
8//~^ ERROR inherent impls cannot be `const`
dfeec247
XL
9
10impl const T {}
11//~^ ERROR inherent impls cannot be `const`
dfeec247
XL
12
13fn main() {}