Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-58857.rs
blob: 4350d7e5b403bcabc727c7c816bfae23f248eada [
file
] [
log
] [
blame
] [
edit
]
struct
Conj
<
A
>
{
a
:
A
}
trait
Valid
{}
impl
<
A
:
!
Valid
>
Conj
<
A
>{}
//~^ ERROR negative bounds are not supported
fn
main
()
{}