Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
delegation
/
impl-reuse-empty-glob.rs
blob: 3f1314c47da62757289757d00ebdec00830ca050 [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
incomplete_features
)]
#![
feature
(
fn_delegation
)]
mod
empty_glob
{
trait
T
{}
struct
S
;
reuse
impl
T
for
S
{
self
.
0
}
//~^ ERROR empty glob delegation is not supported
}
fn
main
()
{}