2014-03-26 23:01:11 +00:00
|
|
|
// Copyright 2012 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 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// Test which of the builtin types are considered POD.
|
|
|
|
|
|
|
|
|
|
|
|
use std::rc::Rc;
|
2014-06-12 02:33:52 +00:00
|
|
|
use std::gc::Gc;
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
fn assert_copy<T:Copy>() { }
|
|
|
|
trait Dummy { }
|
|
|
|
|
|
|
|
struct MyStruct {
|
|
|
|
x: int,
|
|
|
|
y: int,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct MyNoncopyStruct {
|
2014-05-06 01:56:44 +00:00
|
|
|
x: Box<int>,
|
2014-03-26 23:01:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test<'a,T,U:Copy>(_: &'a int) {
|
|
|
|
// lifetime pointers are ok...
|
|
|
|
assert_copy::<&'static int>();
|
|
|
|
assert_copy::<&'a int>();
|
|
|
|
assert_copy::<&'a str>();
|
|
|
|
assert_copy::<&'a [int]>();
|
|
|
|
|
|
|
|
// ...unless they are mutable
|
2014-09-12 14:45:39 +00:00
|
|
|
assert_copy::<&'static mut int>(); //~ ERROR `core::kinds::Copy` is not implemented
|
|
|
|
assert_copy::<&'a mut int>(); //~ ERROR `core::kinds::Copy` is not implemented
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// ~ pointers are not ok
|
2014-09-12 14:45:39 +00:00
|
|
|
assert_copy::<Box<int>>(); //~ ERROR `core::kinds::Copy` is not implemented
|
|
|
|
assert_copy::<String>(); //~ ERROR `core::kinds::Copy` is not implemented
|
|
|
|
assert_copy::<Vec<int> >(); //~ ERROR `core::kinds::Copy` is not implemented
|
|
|
|
assert_copy::<Box<&'a mut int>>(); //~ ERROR `core::kinds::Copy` is not implemented
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// borrowed object types are generally ok
|
|
|
|
assert_copy::<&'a Dummy>();
|
2014-06-11 19:14:38 +00:00
|
|
|
assert_copy::<&'a Dummy+Copy>();
|
|
|
|
assert_copy::<&'static Dummy+Copy>();
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// owned object types are not ok
|
2014-09-12 14:45:39 +00:00
|
|
|
assert_copy::<Box<Dummy>>(); //~ ERROR `core::kinds::Copy` is not implemented
|
|
|
|
assert_copy::<Box<Dummy+Copy>>(); //~ ERROR `core::kinds::Copy` is not implemented
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// mutable object types are not ok
|
2014-09-12 14:45:39 +00:00
|
|
|
assert_copy::<&'a mut Dummy+Copy>(); //~ ERROR `core::kinds::Copy` is not implemented
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// closures are like an `&mut` object
|
2014-09-12 14:45:39 +00:00
|
|
|
assert_copy::<||>(); //~ ERROR `core::kinds::Copy` is not implemented
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// unsafe ptrs are ok
|
2014-06-25 19:47:34 +00:00
|
|
|
assert_copy::<*const int>();
|
|
|
|
assert_copy::<*const &'a mut int>();
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// regular old ints and such are ok
|
|
|
|
assert_copy::<int>();
|
|
|
|
assert_copy::<bool>();
|
|
|
|
assert_copy::<()>();
|
|
|
|
|
|
|
|
// tuples are ok
|
|
|
|
assert_copy::<(int,int)>();
|
|
|
|
|
|
|
|
// structs of POD are ok
|
|
|
|
assert_copy::<MyStruct>();
|
|
|
|
|
|
|
|
// structs containing non-POD are not ok
|
2014-09-12 14:45:39 +00:00
|
|
|
assert_copy::<MyNoncopyStruct>(); //~ ERROR `core::kinds::Copy` is not implemented
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// managed or ref counted types are not ok
|
2014-09-12 14:45:39 +00:00
|
|
|
assert_copy::<Gc<int>>(); //~ ERROR `core::kinds::Copy` is not implemented
|
|
|
|
assert_copy::<Rc<int>>(); //~ ERROR `core::kinds::Copy` is not implemented
|
2014-03-26 23:01:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
}
|
|
|
|
|