mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
20 lines
376 B
Rust
20 lines
376 B
Rust
// revisions: not_static yes_static
|
|
//[yes_static] check-pass
|
|
|
|
#[derive(Clone)]
|
|
struct Foo<'lt>(&'lt ());
|
|
|
|
impl Copy for Foo<'static> {}
|
|
|
|
#[derive(Clone)]
|
|
struct Bar<'lt>(Foo<'lt>);
|
|
|
|
#[cfg(not_static)]
|
|
impl<'any> Copy for Bar<'any> {}
|
|
//[not_static]~^ the trait `Copy` may not be implemented for this type
|
|
|
|
#[cfg(yes_static)]
|
|
impl<'any> Copy for Bar<'static> {}
|
|
|
|
fn main() {}
|