mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
348 B
Rust
21 lines
348 B
Rust
use std::fmt::Debug;
|
|
|
|
trait Str {}
|
|
|
|
trait Something: Sized {
|
|
fn yay<T: Debug>(_: Option<Self>, thing: &[T]);
|
|
}
|
|
|
|
struct X { data: u32 }
|
|
|
|
impl Something for X {
|
|
fn yay<T: Str>(_:Option<X>, thing: &[T]) {
|
|
//~^ ERROR E0276
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let arr = &["one", "two", "three"];
|
|
println!("{:?}", Something::yay(None::<X>, arr));
|
|
}
|