Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
tests
/
ui
/
delegation
/
empty-glob.rs
blob: 70c8c6e10d14b500d264a2a668f42e6cdf5cd68b [
file
]
#![
feature
(
fn_delegation
)]
trait
Trait
{}
struct
S
;
impl
S
{
reuse
Trait
::*;
//~ ERROR empty glob delegation is not supported
}
fn
main
()
{}