(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
function_reference4.rs
fn test(a: i32) -> i32 {
    a + 1
}

fn main() {
    let a: fn(_) -> _ = test;
    let b = a(1);
    // { dg-warning "unused name" "" { target *-*-* } .-1 }
}