Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
delegation
/
impl-reuse-non-trait-impl.rs
blob: c7a9813250db9d871bb9754eaa23bf1e8157b8bf [
file
]
#![
allow
(
incomplete_features
)]
#![
feature
(
fn_delegation
)]
struct
Trait
(
usize
);
reuse
impl
Trait
{
self
.
0
}
//~^ ERROR only trait impls can be reused
fn
main
()
{}