summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/unboxed-closure-sugar-nonexistent-trait.rs
blob: 87f9ce097c58903eb3182a0a2fa27ec2c295002a (plain)
1
2
3
4
5
6
7
8
9
fn f<F:Nonexist(isize) -> isize>(x: F) {}
//~^ ERROR cannot find trait `Nonexist`

type Typedef = isize;

fn g<F:Typedef(isize) -> isize>(x: F) {}
//~^ ERROR expected trait, found type alias `Typedef`

fn main() {}