2013-12-08 01:55:27 -06:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2014-03-21 20:05:05 -05:00
|
|
|
#![no_std]
|
2014-10-27 17:37:07 -05:00
|
|
|
#![allow(unused_variables)]
|
2014-03-21 20:05:05 -05:00
|
|
|
#![allow(non_camel_case_types)]
|
2014-10-27 17:37:07 -05:00
|
|
|
#![allow(non_upper_case_globals)]
|
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
|
|
|
#![allow(missing_copy_implementations)]
|
2014-03-21 20:05:05 -05:00
|
|
|
#![deny(dead_code)]
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2014-03-21 20:05:05 -05:00
|
|
|
#![crate_type="lib"]
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2014-10-06 23:16:35 -05:00
|
|
|
extern crate core;
|
2014-04-02 19:38:45 -05:00
|
|
|
|
2014-10-06 23:16:35 -05:00
|
|
|
pub use foo2::Bar2;
|
2014-04-02 19:38:45 -05:00
|
|
|
|
2013-12-08 01:55:27 -06:00
|
|
|
mod foo {
|
2014-09-20 07:08:10 -05:00
|
|
|
pub struct Bar; //~ ERROR: struct is never used
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
mod foo2 {
|
|
|
|
pub struct Bar2;
|
|
|
|
}
|
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
pub static pub_static: isize = 0;
|
|
|
|
static priv_static: isize = 0; //~ ERROR: static item is never used
|
|
|
|
const used_static: isize = 0;
|
|
|
|
pub static used_static2: isize = used_static;
|
|
|
|
const USED_STATIC: isize = 0;
|
|
|
|
const STATIC_USED_IN_ENUM_DISCRIMINANT: isize = 10;
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
pub const pub_const: isize = 0;
|
|
|
|
const priv_const: isize = 0; //~ ERROR: constant item is never used
|
|
|
|
const used_const: isize = 0;
|
|
|
|
pub const used_const2: isize = used_const;
|
|
|
|
const USED_CONST: isize = 1;
|
|
|
|
const CONST_USED_IN_ENUM_DISCRIMINANT: isize = 11;
|
2014-10-10 10:31:13 -05:00
|
|
|
|
2014-06-25 14:47:34 -05:00
|
|
|
pub type typ = *const UsedStruct4;
|
2014-06-22 12:53:56 -05:00
|
|
|
pub struct PubStruct;
|
2014-09-20 07:08:10 -05:00
|
|
|
struct PrivStruct; //~ ERROR: struct is never used
|
2014-06-06 08:51:42 -05:00
|
|
|
struct UsedStruct1 {
|
|
|
|
#[allow(dead_code)]
|
2015-01-08 04:54:35 -06:00
|
|
|
x: isize
|
2014-06-06 08:51:42 -05:00
|
|
|
}
|
2015-01-08 04:54:35 -06:00
|
|
|
struct UsedStruct2(isize);
|
2013-12-08 01:55:27 -06:00
|
|
|
struct UsedStruct3;
|
|
|
|
struct UsedStruct4;
|
|
|
|
// this struct is never used directly, but its method is, so we don't want
|
|
|
|
// to warn it
|
|
|
|
struct SemiUsedStruct;
|
|
|
|
impl SemiUsedStruct {
|
|
|
|
fn la_la_la() {}
|
|
|
|
}
|
2013-12-16 01:15:00 -06:00
|
|
|
struct StructUsedAsField;
|
2014-09-19 14:30:07 -05:00
|
|
|
pub struct StructUsedInEnum;
|
2013-12-16 17:01:36 -06:00
|
|
|
struct StructUsedInGeneric;
|
2013-12-16 01:15:00 -06:00
|
|
|
pub struct PubStruct2 {
|
2014-06-06 08:51:42 -05:00
|
|
|
#[allow(dead_code)]
|
2014-06-25 14:47:34 -05:00
|
|
|
struct_used_as_field: *const StructUsedAsField
|
2013-12-16 01:15:00 -06:00
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
|
|
|
|
pub enum pub_enum { foo1, bar1 }
|
2014-06-25 14:47:34 -05:00
|
|
|
pub enum pub_enum2 { a(*const StructUsedInEnum) }
|
2014-10-10 10:49:12 -05:00
|
|
|
pub enum pub_enum3 {
|
|
|
|
Foo = STATIC_USED_IN_ENUM_DISCRIMINANT,
|
|
|
|
Bar = CONST_USED_IN_ENUM_DISCRIMINANT,
|
|
|
|
}
|
2014-09-20 06:26:10 -05:00
|
|
|
|
2014-09-20 07:08:10 -05:00
|
|
|
enum priv_enum { foo2, bar2 } //~ ERROR: enum is never used
|
2014-09-20 06:26:10 -05:00
|
|
|
enum used_enum {
|
|
|
|
foo3,
|
2014-09-20 07:08:10 -05:00
|
|
|
bar3 //~ ERROR variant is never used
|
2014-09-20 06:26:10 -05:00
|
|
|
}
|
2013-12-08 01:55:27 -06:00
|
|
|
|
2013-12-16 17:01:36 -06:00
|
|
|
fn f<T>() {}
|
|
|
|
|
2013-12-11 19:49:46 -06:00
|
|
|
pub fn pub_fn() {
|
|
|
|
used_fn();
|
|
|
|
let used_struct1 = UsedStruct1 { x: 1 };
|
|
|
|
let used_struct2 = UsedStruct2(1);
|
|
|
|
let used_struct3 = UsedStruct3;
|
2014-11-06 02:05:53 -06:00
|
|
|
let e = used_enum::foo3;
|
2013-12-11 19:49:46 -06:00
|
|
|
SemiUsedStruct::la_la_la();
|
|
|
|
|
2014-06-27 14:30:25 -05:00
|
|
|
let i = 1i;
|
2013-12-11 19:49:46 -06:00
|
|
|
match i {
|
|
|
|
USED_STATIC => (),
|
2014-10-10 10:49:12 -05:00
|
|
|
USED_CONST => (),
|
2013-12-11 19:49:46 -06:00
|
|
|
_ => ()
|
|
|
|
}
|
2013-12-16 17:01:36 -06:00
|
|
|
f::<StructUsedInGeneric>();
|
2013-12-11 19:49:46 -06:00
|
|
|
}
|
2014-09-20 07:08:10 -05:00
|
|
|
fn priv_fn() { //~ ERROR: function is never used
|
2013-12-11 19:49:46 -06:00
|
|
|
let unused_struct = PrivStruct;
|
|
|
|
}
|
|
|
|
fn used_fn() {}
|
|
|
|
|
2014-09-20 07:08:10 -05:00
|
|
|
fn foo() { //~ ERROR: function is never used
|
2013-12-08 01:55:27 -06:00
|
|
|
bar();
|
2014-11-06 02:05:53 -06:00
|
|
|
let unused_enum = priv_enum::foo2;
|
2013-12-08 01:55:27 -06:00
|
|
|
}
|
|
|
|
|
2014-09-20 07:08:10 -05:00
|
|
|
fn bar() { //~ ERROR: function is never used
|
2013-12-08 01:55:27 -06:00
|
|
|
foo();
|
|
|
|
}
|
2014-01-11 02:21:53 -06:00
|
|
|
|
|
|
|
// Code with #[allow(dead_code)] should be marked live (and thus anything it
|
|
|
|
// calls is marked live)
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn g() { h(); }
|
|
|
|
fn h() {}
|