about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gate-fn_delegation.rs
blob: 5352b2d8cadb49dd4770579e8a143873d5334990 (plain)
1
2
3
4
5
6
7
8
mod to_reuse {
    pub fn foo() {}
}

reuse to_reuse::foo;
//~^ ERROR functions delegation is not yet fully implemented

fn main() {}