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

mod m {}

reuse m::{}; //~ ERROR empty list delegation is not supported

fn main() {}