rust/tests/ui/coherence/coherence-negative-impls-safe-rpass.rs
2023-01-11 09:32:08 +00:00

14 lines
178 B
Rust

// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
#![feature(negative_impls)]
use std::marker::Send;
struct TestType;
impl !Send for TestType {}
fn main() {}