rust/tests/pretty/trait-polarity.rs

10 lines
97 B
Rust

#![feature(negative_impls)]
// pp-exact
struct Test;
impl !Send for Test {}
pub fn main() {}