blob: a31062f4804639f4a8f778821a38d8cee7066f1d [file] [edit]
//! Regression test for <https://github.com/rust-lang/rust/issues/3021>.
//! Test we can't use outer generic param in trait method defined in fn body.
fn siphash<T>() {
trait U {
fn g(&self, x: T) -> T; //~ ERROR can't use generic parameters from outer item
//~^ ERROR can't use generic parameters from outer item
}
}
fn main() {}