mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
275 B
Rust
18 lines
275 B
Rust
//@ run-pass
|
|
pub trait Foo {
|
|
fn method1() {}
|
|
fn method2();
|
|
}
|
|
|
|
struct Slice<'a, T: 'a>(#[allow(dead_code)] &'a [T]);
|
|
|
|
impl<'a, T: 'a> Foo for Slice<'a, T> {
|
|
fn method2() {
|
|
<Self as Foo>::method1();
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
<Slice<()> as Foo>::method2();
|
|
}
|