2014-03-26 23:01:11 +00:00
|
|
|
// Test which of the builtin types are considered POD.
|
|
|
|
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
|
|
|
fn assert_copy<T:Copy>() { }
|
librustc: Make `Copy` opt-in.
This change makes the compiler no longer infer whether types (structures
and enumerations) implement the `Copy` trait (and thus are implicitly
copyable). Rather, you must implement `Copy` yourself via `impl Copy for
MyType {}`.
A new warning has been added, `missing_copy_implementations`, to warn
you if a non-generic public type has been added that could have
implemented `Copy` but didn't.
For convenience, you may *temporarily* opt out of this behavior by using
`#![feature(opt_out_copy)]`. Note though that this feature gate will never be
accepted and will be removed by the time that 1.0 is released, so you should
transition your code away from using it.
This breaks code like:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
Change this code to:
#[deriving(Show)]
struct Point2D {
x: int,
y: int,
}
impl Copy for Point2D {}
fn main() {
let mypoint = Point2D {
x: 1,
y: 1,
};
let otherpoint = mypoint;
println!("{}{}", mypoint, otherpoint);
}
This is the backwards-incompatible part of #13231.
Part of RFC #3.
[breaking-change]
2014-12-06 01:01:33 +00:00
|
|
|
|
2015-04-18 05:12:20 +00:00
|
|
|
trait Dummy { }
|
2014-03-26 23:01:11 +00:00
|
|
|
|
2015-03-30 13:38:27 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2014-03-26 23:01:11 +00:00
|
|
|
struct MyStruct {
|
2015-01-08 10:54:35 +00:00
|
|
|
x: isize,
|
|
|
|
y: isize,
|
2014-03-26 23:01:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct MyNoncopyStruct {
|
2014-11-08 01:23:33 +00:00
|
|
|
x: Box<char>,
|
2014-03-26 23:01:11 +00:00
|
|
|
}
|
|
|
|
|
2015-01-08 10:54:35 +00:00
|
|
|
fn test<'a,T,U:Copy>(_: &'a isize) {
|
2014-03-26 23:01:11 +00:00
|
|
|
// lifetime pointers are ok...
|
2015-01-08 10:54:35 +00:00
|
|
|
assert_copy::<&'static isize>();
|
|
|
|
assert_copy::<&'a isize>();
|
2014-03-26 23:01:11 +00:00
|
|
|
assert_copy::<&'a str>();
|
2015-01-08 10:54:35 +00:00
|
|
|
assert_copy::<&'a [isize]>();
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// ...unless they are mutable
|
2020-09-02 07:40:56 +00:00
|
|
|
assert_copy::<&'static mut isize>(); //~ ERROR : Copy` is not satisfied
|
|
|
|
assert_copy::<&'a mut isize>(); //~ ERROR : Copy` is not satisfied
|
2014-03-26 23:01:11 +00:00
|
|
|
|
2015-06-09 20:26:21 +00:00
|
|
|
// boxes are not ok
|
2020-09-02 07:40:56 +00:00
|
|
|
assert_copy::<Box<isize>>(); //~ ERROR : Copy` is not satisfied
|
|
|
|
assert_copy::<String>(); //~ ERROR : Copy` is not satisfied
|
|
|
|
assert_copy::<Vec<isize> >(); //~ ERROR : Copy` is not satisfied
|
|
|
|
assert_copy::<Box<&'a mut isize>>(); //~ ERROR : Copy` is not satisfied
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// borrowed object types are generally ok
|
2019-05-28 18:46:13 +00:00
|
|
|
assert_copy::<&'a dyn Dummy>();
|
|
|
|
assert_copy::<&'a (dyn Dummy + Send)>();
|
|
|
|
assert_copy::<&'static (dyn Dummy + Send)>();
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// owned object types are not ok
|
2020-09-02 07:40:56 +00:00
|
|
|
assert_copy::<Box<dyn Dummy>>(); //~ ERROR : Copy` is not satisfied
|
|
|
|
assert_copy::<Box<dyn Dummy + Send>>(); //~ ERROR : Copy` is not satisfied
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// mutable object types are not ok
|
2020-09-02 07:40:56 +00:00
|
|
|
assert_copy::<&'a mut (dyn Dummy + Send)>(); //~ ERROR : Copy` is not satisfied
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// unsafe ptrs are ok
|
2015-01-08 10:54:35 +00:00
|
|
|
assert_copy::<*const isize>();
|
|
|
|
assert_copy::<*const &'a mut isize>();
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// regular old ints and such are ok
|
2015-01-08 10:54:35 +00:00
|
|
|
assert_copy::<isize>();
|
2014-03-26 23:01:11 +00:00
|
|
|
assert_copy::<bool>();
|
|
|
|
assert_copy::<()>();
|
|
|
|
|
|
|
|
// tuples are ok
|
2015-01-08 10:54:35 +00:00
|
|
|
assert_copy::<(isize,isize)>();
|
2014-03-26 23:01:11 +00:00
|
|
|
|
|
|
|
// structs of POD are ok
|
|
|
|
assert_copy::<MyStruct>();
|
|
|
|
|
|
|
|
// structs containing non-POD are not ok
|
2020-09-02 07:40:56 +00:00
|
|
|
assert_copy::<MyNoncopyStruct>(); //~ ERROR : Copy` is not satisfied
|
2014-03-26 23:01:11 +00:00
|
|
|
|
2014-10-02 05:10:09 +00:00
|
|
|
// ref counted types are not ok
|
2020-09-02 07:40:56 +00:00
|
|
|
assert_copy::<Rc<isize>>(); //~ ERROR : Copy` is not satisfied
|
2014-03-26 23:01:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
}
|