Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
syntax-trait-polarity-feature-gate.rs
blob: 4a3b24383abc4a37e4dd375eea92e99314f2537b [
file
] [
log
] [
blame
]
use
std
::
marker
::
Send
;
struct
TestType
;
trait
TestTrait
{}
impl
!
Send
for
TestType
{}
//~^ ERROR negative trait bounds
fn
main
()
{}