Sign in
android
/
toolchain
/
rustc
/
54272acac043c1dedfb7db7420545b31ec1ac51f
/
.
/
src
/
test
/
ui
/
rfc-2632-const-trait-impl
/
impl-opt-out-trait.rs
blob: 98d3a220d8674d8b98f7eae5a3a2c52f5c3a291e [
file
] [
log
] [
blame
]
#![
feature
(
const_trait_bound_opt_out
)]
#![
feature
(
const_trait_impl
)]
#![
allow
(
incomplete_features
)]
struct
S
;
trait
T
{}
impl
?
const
T
for
S
{}
//~^ ERROR expected a trait, found type
fn
main
()
{}