Skip to content

Commit 2e346b6

Browse files
Even more tests
1 parent 9d44f9b commit 2e346b6

10 files changed

+280
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
error[E0277]: the trait bound `T: Copy` is not satisfied
2+
--> $DIR/explicit-drop-bounds.rs:27:18
3+
|
4+
LL | impl<T> Drop for DropMe<T>
5+
| ^^^^^^^^^ the trait `Copy` is not implemented for `T`
6+
|
7+
note: required by a bound in `DropMe`
8+
--> $DIR/explicit-drop-bounds.rs:7:18
9+
|
10+
LL | struct DropMe<T: Copy>(T);
11+
| ^^^^ required by this bound in `DropMe`
12+
help: consider further restricting type parameter `T`
13+
|
14+
LL | [T; 1]: Copy, T: std::marker::Copy // But `[T; 1]: Copy` does not imply `T: Copy`
15+
| ~~~~~~~~~~~~~~~~~~~~~~
16+
17+
error[E0277]: the trait bound `T: Copy` is not satisfied
18+
--> $DIR/explicit-drop-bounds.rs:32:13
19+
|
20+
LL | fn drop(&mut self) {}
21+
| ^^^^^^^^^ the trait `Copy` is not implemented for `T`
22+
|
23+
note: required by a bound in `DropMe`
24+
--> $DIR/explicit-drop-bounds.rs:7:18
25+
|
26+
LL | struct DropMe<T: Copy>(T);
27+
| ^^^^ required by this bound in `DropMe`
28+
help: consider further restricting type parameter `T`
29+
|
30+
LL | [T; 1]: Copy, T: std::marker::Copy // But `[T; 1]: Copy` does not imply `T: Copy`
31+
| ~~~~~~~~~~~~~~~~~~~~~~
32+
33+
error: aborting due to 2 previous errors
34+
35+
For more information about this error, try `rustc --explain E0277`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
error[E0277]: the trait bound `T: Copy` is not satisfied
2+
--> $DIR/explicit-drop-bounds.rs:37:18
3+
|
4+
LL | impl<T> Drop for DropMe<T>
5+
| ^^^^^^^^^ the trait `Copy` is not implemented for `T`
6+
|
7+
note: required by a bound in `DropMe`
8+
--> $DIR/explicit-drop-bounds.rs:7:18
9+
|
10+
LL | struct DropMe<T: Copy>(T);
11+
| ^^^^ required by this bound in `DropMe`
12+
help: consider restricting type parameter `T`
13+
|
14+
LL | impl<T: std::marker::Copy> Drop for DropMe<T>
15+
| +++++++++++++++++++
16+
17+
error[E0277]: the trait bound `T: Copy` is not satisfied
18+
--> $DIR/explicit-drop-bounds.rs:40:13
19+
|
20+
LL | fn drop(&mut self) {}
21+
| ^^^^^^^^^ the trait `Copy` is not implemented for `T`
22+
|
23+
note: required by a bound in `DropMe`
24+
--> $DIR/explicit-drop-bounds.rs:7:18
25+
|
26+
LL | struct DropMe<T: Copy>(T);
27+
| ^^^^ required by this bound in `DropMe`
28+
help: consider restricting type parameter `T`
29+
|
30+
LL | impl<T: std::marker::Copy> Drop for DropMe<T>
31+
| +++++++++++++++++++
32+
33+
error: aborting due to 2 previous errors
34+
35+
For more information about this error, try `rustc --explain E0277`.
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// revisions: good1 good2 bad1 bad2
2+
//[good1] check-pass
3+
//[good2] check-pass
4+
5+
use std::ops::Drop;
6+
7+
struct DropMe<T: Copy>(T);
8+
9+
#[cfg(good1)]
10+
impl<T> Drop for DropMe<T>
11+
where
12+
T: Copy + Clone,
13+
{
14+
fn drop(&mut self) {}
15+
}
16+
17+
#[cfg(good2)]
18+
impl<T> Drop for DropMe<T>
19+
where
20+
T: Copy,
21+
[T; 1]: Copy, // Trivial bound implied by `T: Copy`
22+
{
23+
fn drop(&mut self) {}
24+
}
25+
26+
#[cfg(bad1)]
27+
impl<T> Drop for DropMe<T>
28+
//[bad1]~^ ERROR the trait bound `T: Copy` is not satisfied
29+
where
30+
[T; 1]: Copy, // But `[T; 1]: Copy` does not imply `T: Copy`
31+
{
32+
fn drop(&mut self) {}
33+
//[bad1]~^ ERROR the trait bound `T: Copy` is not satisfied
34+
}
35+
36+
#[cfg(bad2)]
37+
impl<T> Drop for DropMe<T>
38+
//[bad2]~^ ERROR the trait bound `T: Copy` is not satisfied
39+
{
40+
fn drop(&mut self) {}
41+
//[bad2]~^ ERROR the trait bound `T: Copy` is not satisfied
42+
}
43+
44+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
error[E0367]: `Drop` impl requires `T: 'static` but the struct it is implemented for does not
2+
--> $DIR/explicit-implied-outlives.rs:28:8
3+
|
4+
LL | T: 'static,
5+
| ^^^^^^^
6+
|
7+
note: the implementor must specify the same requirement
8+
--> $DIR/explicit-implied-outlives.rs:7:1
9+
|
10+
LL | struct DropMe<'a, T>(&'a T);
11+
| ^^^^^^^^^^^^^^^^^^^^
12+
13+
error: aborting due to previous error
14+
15+
For more information about this error, try `rustc --explain E0367`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
error[E0367]: `Drop` impl requires `'a: 'static` but the struct it is implemented for does not
2+
--> $DIR/explicit-implied-outlives.rs:37:9
3+
|
4+
LL | 'a: 'static,
5+
| ^^^^^^^
6+
|
7+
note: the implementor must specify the same requirement
8+
--> $DIR/explicit-implied-outlives.rs:7:1
9+
|
10+
LL | struct DropMe<'a, T>(&'a T);
11+
| ^^^^^^^^^^^^^^^^^^^^
12+
13+
error: aborting due to previous error
14+
15+
For more information about this error, try `rustc --explain E0367`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
// revisions: good1 good2 bad1 bad2
2+
//[good1] check-pass
3+
//[good2] check-pass
4+
5+
use std::ops::Drop;
6+
7+
struct DropMe<'a, T>(&'a T);
8+
9+
#[cfg(good1)]
10+
impl<'a, T> Drop for DropMe<'a, T>
11+
where
12+
T: 'a, // Implied by struct, explicit on impl
13+
{
14+
fn drop(&mut self) {}
15+
}
16+
17+
#[cfg(good2)]
18+
impl<'a, T> Drop for DropMe<'a, T>
19+
where
20+
'static: 'a, // Trivial bound
21+
{
22+
fn drop(&mut self) {}
23+
}
24+
25+
#[cfg(bad1)]
26+
impl<'a, T> Drop for DropMe<'a, T>
27+
where
28+
T: 'static,
29+
//[bad1]~^ ERROR `Drop` impl requires `T: 'static`
30+
{
31+
fn drop(&mut self) {}
32+
}
33+
34+
#[cfg(bad2)]
35+
impl<'a, T> Drop for DropMe<'a, T>
36+
where
37+
'a: 'static,
38+
//[bad2]~^ ERROR `Drop` impl requires `'a: 'static`
39+
{
40+
fn drop(&mut self) {}
41+
}
42+
43+
fn main() {}
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// check-pass
2+
3+
use std::marker::PhantomData;
4+
use std::ops::Drop;
5+
6+
// a >= b >= c >= a implies a = b = c
7+
struct DropMe<'a: 'b, 'b: 'c, 'c: 'a>(
8+
PhantomData<&'a ()>,
9+
PhantomData<&'b ()>,
10+
PhantomData<&'c ()>,
11+
);
12+
13+
// a >= b, a >= c, b >= a, c >= a implies a = b = c
14+
impl<'a: 'b + 'c, 'b: 'a, 'c: 'a> Drop for DropMe<'a, 'b, 'c> {
15+
fn drop(&mut self) {}
16+
}
17+
18+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
error[E0367]: `Drop` impl requires `'a: 'c` but the struct it is implemented for does not
2+
--> $DIR/transitive-outlives.rs:20:9
3+
|
4+
LL | 'a: 'c,
5+
| ^^
6+
|
7+
note: the implementor must specify the same requirement
8+
--> $DIR/transitive-outlives.rs:7:1
9+
|
10+
LL | struct DropMe<'a, 'b: 'a, 'c: 'b>(PhantomData<&'a ()>, PhantomData<&'b ()>, PhantomData<&'c ()>);
11+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12+
13+
error: aborting due to previous error
14+
15+
For more information about this error, try `rustc --explain E0367`.
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// revisions: good bad
2+
//[good] check-pass
3+
4+
use std::marker::PhantomData;
5+
use std::ops::Drop;
6+
7+
struct DropMe<'a, 'b: 'a, 'c: 'b>(PhantomData<&'a ()>, PhantomData<&'b ()>, PhantomData<&'c ()>);
8+
9+
#[cfg(good)]
10+
impl<'a, 'b, 'c> Drop for DropMe<'a, 'b, 'c>
11+
where
12+
'c: 'a,
13+
{
14+
fn drop(&mut self) {}
15+
}
16+
17+
#[cfg(bad)]
18+
impl<'a, 'b, 'c> Drop for DropMe<'a, 'b, 'c>
19+
where
20+
'a: 'c,
21+
//[bad]~^ ERROR `Drop` impl requires `'a: 'c`
22+
{
23+
fn drop(&mut self) {}
24+
}
25+
26+
fn main() {}
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// revisions: good1 good2 good3
2+
// check-pass
3+
4+
use std::ops::Drop;
5+
6+
struct Foo;
7+
8+
const X: usize = 1;
9+
10+
#[cfg(good1)]
11+
impl Drop for Foo
12+
where
13+
[(); X]:, // Trivial WF bound
14+
{
15+
fn drop(&mut self) {}
16+
}
17+
18+
#[cfg(good2)]
19+
impl Drop for Foo
20+
where
21+
for<'a> &'a (): Copy, // Trivial trait bound
22+
{
23+
fn drop(&mut self) {}
24+
}
25+
26+
#[cfg(good3)]
27+
impl Drop for Foo
28+
where
29+
for<'a> &'a (): 'a, // Trivial outlives bound
30+
{
31+
fn drop(&mut self) {}
32+
}
33+
34+
fn main() {}

0 commit comments

Comments
 (0)