mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
9 lines
137 B
Rust
9 lines
137 B
Rust
trait Foo<T> {
|
|
fn do_something(&self) -> T;
|
|
fn do_something_else<T: Clone>(&self, bar: T);
|
|
//~^ ERROR E0403
|
|
}
|
|
|
|
fn main() {
|
|
}
|