2014-03-26 18:01:11 -05: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;
|
|
|
|
|
|
|
|
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-05 19:01:33 -06:00
|
|
|
|
2015-04-18 00:12:20 -05:00
|
|
|
trait Dummy { }
|
2014-03-26 18:01:11 -05:00
|
|
|
|
2015-03-30 08:38:27 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2014-03-26 18:01:11 -05:00
|
|
|
struct MyStruct {
|
2015-01-08 04:54:35 -06:00
|
|
|
x: isize,
|
|
|
|
y: isize,
|
2014-03-26 18:01:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct MyNoncopyStruct {
|
2014-11-07 19:23:33 -06:00
|
|
|
x: Box<char>,
|
2014-03-26 18:01:11 -05:00
|
|
|
}
|
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn test<'a,T,U:Copy>(_: &'a isize) {
|
2014-03-26 18:01:11 -05:00
|
|
|
// lifetime pointers are ok...
|
2015-01-08 04:54:35 -06:00
|
|
|
assert_copy::<&'static isize>();
|
|
|
|
assert_copy::<&'a isize>();
|
2014-03-26 18:01:11 -05:00
|
|
|
assert_copy::<&'a str>();
|
2015-01-08 04:54:35 -06:00
|
|
|
assert_copy::<&'a [isize]>();
|
2014-03-26 18:01:11 -05:00
|
|
|
|
|
|
|
// ...unless they are mutable
|
2016-03-29 12:12:31 -05:00
|
|
|
assert_copy::<&'static mut isize>(); //~ ERROR : std::marker::Copy` is not satisfied
|
|
|
|
assert_copy::<&'a mut isize>(); //~ ERROR : std::marker::Copy` is not satisfied
|
2014-03-26 18:01:11 -05:00
|
|
|
|
2015-06-09 15:26:21 -05:00
|
|
|
// boxes are not ok
|
2016-03-29 12:12:31 -05:00
|
|
|
assert_copy::<Box<isize>>(); //~ ERROR : std::marker::Copy` is not satisfied
|
|
|
|
assert_copy::<String>(); //~ ERROR : std::marker::Copy` is not satisfied
|
|
|
|
assert_copy::<Vec<isize> >(); //~ ERROR : std::marker::Copy` is not satisfied
|
|
|
|
assert_copy::<Box<&'a mut isize>>(); //~ ERROR : std::marker::Copy` is not satisfied
|
2014-03-26 18:01:11 -05:00
|
|
|
|
|
|
|
// borrowed object types are generally ok
|
|
|
|
assert_copy::<&'a Dummy>();
|
2016-04-21 18:31:04 -05:00
|
|
|
assert_copy::<&'a (Dummy+Send)>();
|
|
|
|
assert_copy::<&'static (Dummy+Send)>();
|
2014-03-26 18:01:11 -05:00
|
|
|
|
|
|
|
// owned object types are not ok
|
2016-03-29 12:12:31 -05:00
|
|
|
assert_copy::<Box<Dummy>>(); //~ ERROR : std::marker::Copy` is not satisfied
|
2016-04-21 18:31:04 -05:00
|
|
|
assert_copy::<Box<Dummy+Send>>(); //~ ERROR : std::marker::Copy` is not satisfied
|
2014-03-26 18:01:11 -05:00
|
|
|
|
|
|
|
// mutable object types are not ok
|
2016-04-21 18:31:04 -05:00
|
|
|
assert_copy::<&'a mut (Dummy+Send)>(); //~ ERROR : std::marker::Copy` is not satisfied
|
2014-03-26 18:01:11 -05:00
|
|
|
|
|
|
|
// unsafe ptrs are ok
|
2015-01-08 04:54:35 -06:00
|
|
|
assert_copy::<*const isize>();
|
|
|
|
assert_copy::<*const &'a mut isize>();
|
2014-03-26 18:01:11 -05:00
|
|
|
|
|
|
|
// regular old ints and such are ok
|
2015-01-08 04:54:35 -06:00
|
|
|
assert_copy::<isize>();
|
2014-03-26 18:01:11 -05:00
|
|
|
assert_copy::<bool>();
|
|
|
|
assert_copy::<()>();
|
|
|
|
|
|
|
|
// tuples are ok
|
2015-01-08 04:54:35 -06:00
|
|
|
assert_copy::<(isize,isize)>();
|
2014-03-26 18:01:11 -05:00
|
|
|
|
|
|
|
// structs of POD are ok
|
|
|
|
assert_copy::<MyStruct>();
|
|
|
|
|
|
|
|
// structs containing non-POD are not ok
|
2016-03-29 12:12:31 -05:00
|
|
|
assert_copy::<MyNoncopyStruct>(); //~ ERROR : std::marker::Copy` is not satisfied
|
2014-03-26 18:01:11 -05:00
|
|
|
|
2014-10-02 00:10:09 -05:00
|
|
|
// ref counted types are not ok
|
2016-03-29 12:12:31 -05:00
|
|
|
assert_copy::<Rc<isize>>(); //~ ERROR : std::marker::Copy` is not satisfied
|
2014-03-26 18:01:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
}
|