summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/non-lifetime-binders.rs
blob: c26393c8f895cedc2aeaf174710bf4edb00a48be (plain)
1
2
3
4
5
6
7
8
9
10
fn main() where for<'a, T: Sized + 'a, const C: usize> [&'a T; C]: Sized { 
    let x = for<T> 
    || {};

    let y: dyn 
    for<T> Into<T>;
    
    let z: for<T> 
    fn(T);
}