]> git.lizzy.rs Git - rust.git/blob - tests/pretty/trait-polarity.rs
Rollup merge of #107819 - clubby789:x-py-root, r=jyn514
[rust.git] / tests / pretty / trait-polarity.rs
1 #![feature(negative_impls)]
2
3 // pp-exact
4
5 struct Test;
6
7 impl !Send for Test {}
8
9 pub fn main() {}