mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
24 lines
581 B
Rust
24 lines
581 B
Rust
// run-pass
|
|
|
|
#![allow(unused_imports)]
|
|
|
|
// aux-build:trait_superkinds_in_metadata.rs
|
|
|
|
// Tests (correct) usage of trait super-builtin-kinds cross-crate.
|
|
|
|
extern crate trait_superkinds_in_metadata;
|
|
use trait_superkinds_in_metadata::{RequiresRequiresShareAndSend, RequiresShare};
|
|
use trait_superkinds_in_metadata::RequiresCopy;
|
|
use std::marker;
|
|
|
|
#[derive(Copy, Clone)]
|
|
struct X<T>(#[allow(unused_tuple_struct_fields)] T);
|
|
|
|
impl<T:Sync> RequiresShare for X<T> { }
|
|
|
|
impl<T:Sync+Send> RequiresRequiresShareAndSend for X<T> { }
|
|
|
|
impl<T:Copy> RequiresCopy for X<T> { }
|
|
|
|
pub fn main() { }
|