rustc/tests/ui/coherence/coherence-negative-impls-safe-rpass.rs
2025-02-17 11:14:05 +01:00

11 lines
123 B
Rust

//@ run-pass
#![allow(dead_code)]
#![feature(negative_impls)]
struct TestType;
impl !Send for TestType {}
fn main() {}