rust/tests/pretty/trait-polarity.rs
2023-01-11 09:32:08 +00:00

10 lines
97 B
Rust

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