blob: 87f9ce097c58903eb3182a0a2fa27ec2c295002a [file] [log] [blame]
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() {}