mirror of https://github.com/rust-lang/rust
16 lines
380 B
Rust
16 lines
380 B
Rust
//@ run-rustfix
|
|
fn takes_str(_x: &str) {}
|
|
|
|
fn takes_type_parameter<T>(_x: T) where T: SomeTrait {}
|
|
|
|
trait SomeTrait {}
|
|
impl SomeTrait for &'_ str {}
|
|
impl SomeTrait for char {}
|
|
|
|
fn main() {
|
|
let string = String::new();
|
|
takes_str(&string); // Ok
|
|
takes_type_parameter(&*string); // Error
|
|
//~^ ERROR the trait bound `&String: SomeTrait` is not satisfied
|
|
}
|