summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-39687.rs
blob: cbb721fbb57c3f1a81e590217bd90ccdb38b92ff (plain)
1
2
3
4
5
6
#![feature(fn_traits)]

fn main() {
    <fn() as Fn()>::call;
    //~^ ERROR associated type bindings are not allowed here [E0229]
}