Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
chalkify
/
lower_env3.rs
blob: 673f08d78abd0ee08102294a9ed6634b04ac4e46 [
file
] [
log
] [
blame
]
// check-pass
// compile-flags: -Z chalk
#![
allow
(
dead_code
)]
trait
Foo
{
fn
foo
(&
self
);
}
impl
<
T
>
Foo
for
T where T
:
Clone
{
fn
foo
(&
self
)
{
}
}
fn
main
()
{
}