Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
delegation
/
impl-reuse-non-trait-impl.rs
blob: c7a9813250db9d871bb9754eaa23bf1e8157b8bf [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
incomplete_features
)]
#![
feature
(
fn_delegation
)]
struct
Trait
(
usize
);
reuse
impl
Trait
{
self
.
0
}
//~^ ERROR only trait impls can be reused
fn
main
()
{}