rust/tests/ui/self/self-type-param.rs

20 lines
267 B
Rust

//@ build-pass (FIXME(62277): could be check-pass?)
#![allow(dead_code)]
//@ pretty-expanded FIXME #23616
trait MyTrait {
fn f(&self) -> Self;
}
struct S {
x: isize
}
impl MyTrait for S {
fn f(&self) -> S {
S { x: 3 }
}
}
pub fn main() {}