Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
delegation
/
empty-glob.rs
blob: d98579d8972577955009adddd648cc069152ae32 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
fn_delegation
)]
#![
allow
(
incomplete_features
)]
trait
Trait
{}
struct
S
;
impl
S
{
reuse
Trait
::*;
//~ ERROR empty glob delegation is not supported
}
fn
main
()
{}