Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
coherence
/
coherence-negative-impls-safe-rpass.rs
blob: d69872ba8cffa2ce6f98e4206e1d5e04ea5d1e2f [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
//@ pretty-expanded FIXME #23616
#![
feature
(
negative_impls
)]
struct
TestType
;
impl
!
Send
for
TestType
{}
fn
main
()
{}