Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
rustdoc
/
inline_cross
/
auxiliary
/
issue-24183.rs
blob: e7a13acc6f864bd7cc41de40033c6d556ac275e6 [
file
] [
log
] [
blame
]
#![
crate_type
=
"lib"
]
pub
trait
U
/*: ?Sized */
{
fn
modified
(
self
)
->
Self
where
Self
:
Sized
{
self
}
fn
touch
(&
self
)
/* where Self: ?Sized */
{}
}
pub
trait
S
:
Sized
{}