Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-18611.rs
blob: 57da57d83537c34ca3947e87ce251d0069ff4486 [
file
] [
log
] [
blame
] [
edit
]
fn
add_state
(
op
:
<
isize
as
HasState
>::
State
)
{
//~^ ERROR `isize: HasState` is not satisfied
//~| ERROR `isize: HasState` is not satisfied
}
trait
HasState
{
type
State
;
}
fn
main
()
{}