Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
rfc-2632-const-trait-impl
/
inherent-impl.rs
blob: afd0d137bb4aadf8565a12443527e43e2ba5a760 [
file
] [
log
] [
blame
]
#![
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
()
{}