// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // ignore-fast // aux-build:trait_superkinds_in_metadata.rs // Tests "capabilities" granted by traits with super-builtin-kinds, // even when using them cross-crate. extern crate trait_superkinds_in_metadata; use trait_superkinds_in_metadata::{RequiresRequiresFreezeAndSend, RequiresFreeze}; #[deriving(Eq)] struct X(T); impl RequiresFreeze for X { } impl RequiresRequiresFreezeAndSend for X { } fn foo(val: T, chan: Chan) { chan.send(val); } pub fn main() { let (p,c) = Chan::new(); foo(X(31337), c); assert!(p.recv() == X(31337)); }