summary refs log tree commit diff
path: root/src/test/run-pass/coherence/coherence-negative-impls-safe.rs
blob: 98b04489ac4de8063e5c18af82ff48afca7339f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass
// revisions: old re

#![cfg_attr(re, feature(re_rebalance_coherence))]
#![allow(dead_code)]
// pretty-expanded FIXME #23616

#![feature(optin_builtin_traits)]

use std::marker::Send;

struct TestType;

impl !Send for TestType {}

fn main() {}