about summary refs log tree commit diff
path: root/tests/ui/delegation/empty-glob.rs
blob: d98579d8972577955009adddd648cc069152ae32 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![feature(fn_delegation)]
#![allow(incomplete_features)]

trait Trait {}

struct S;
impl S {
    reuse Trait::*; //~ ERROR empty glob delegation is not supported
}

fn main() {}