blob: 695a71cbd2d7c6230fe1e4d67b6c981648bf8520 [file] [log] [blame]
// run-pass
#![allow(dead_code)]
// pretty-expanded FIXME #23616
#![feature(optin_builtin_traits)]
use std::marker::Send;
struct TestType;
impl !Send for TestType {}
fn main() {}