Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
self
/
self-type-param.rs
blob: 3b107f465ea162c1382536ef076f93c4fdc6049e [
file
] [
log
] [
blame
]
//@ build-pass (FIXME(62277): could be check-pass?)
#![
allow
(
dead_code
)]
trait
MyTrait
{
fn
f
(&
self
)
->
Self
;
}
struct
S
{
x
:
isize
}
impl
MyTrait
for
S
{
fn
f
(&
self
)
->
S
{
S
{
x
:
3
}
}
}
pub
fn
main
()
{}