]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-negative-impls-safe-rpass.rs
Auto merge of #99814 - aliemjay:patch-2, r=jackh726
[rust.git] / src / test / ui / coherence / coherence-negative-impls-safe-rpass.rs
1 // run-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 #![feature(negative_impls)]
6
7 use std::marker::Send;
8
9 struct TestType;
10
11 impl !Send for TestType {}
12
13 fn main() {}