Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
issue-99080.rs
blob: ecafdd6303d5f114072ded0dcf6e7dc1913691ff [
file
] [
log
] [
blame
] [
edit
]
//@ 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
{}