Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
16040a16285e3bfde82c3e4216d16a6e566494da
/
.
/
tests
/
ui
/
rfcs
/
rfc-2632-const-trait-impl
/
impl-tilde-const-trait.rs
blob: 05b26465c5b0c395ba57e625bde6abb6a5b47161 [
file
] [
log
] [
blame
]
#![
feature
(
const_trait_impl
)]
struct
S
;
trait
T
{}
impl
~
const
T
for
S
{}
//~^ ERROR expected a trait, found type
fn
main
()
{}