mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 16:45:37 +00:00
17 lines
239 B
Rust
17 lines
239 B
Rust
|
// aux-build:meow.rs
|
||
|
|
||
|
extern crate meow;
|
||
|
|
||
|
use meow::Meow;
|
||
|
|
||
|
fn needs_meow<T: Meow>(t: T) {}
|
||
|
|
||
|
fn main() {
|
||
|
needs_meow(1usize);
|
||
|
//~^ ERROR the trait bound `usize: Meow` is not satisfied
|
||
|
}
|
||
|
|
||
|
struct LocalMeow;
|
||
|
|
||
|
impl Meow for LocalMeow {}
|