Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
refs/heads/cranelift-rebase
/
.
/
src
/
test
/
ui
/
syntax-trait-polarity-feature-gate.rs
blob: 4a3b24383abc4a37e4dd375eea92e99314f2537b [
file
] [
edit
]
use
std
::
marker
::
Send
;
struct
TestType
;
trait
TestTrait
{}
impl
!
Send
for
TestType
{}
//~^ ERROR negative trait bounds
fn
main
()
{}