rust/tests/ui/resolve/issue-3021-c.rs
2023-01-11 09:32:08 +00:00

10 lines
215 B
Rust

fn siphash<T>() {
trait U {
fn g(&self, x: T) -> T; //~ ERROR can't use generic parameters from outer function
//~^ ERROR can't use generic parameters from outer function
}
}
fn main() {}