Skip to content

Commit d80d7ea

Browse files
committed
Add some tests for associated type normalization edge cases
1 parent e867886 commit d80d7ea

File tree

4 files changed

+194
-0
lines changed

4 files changed

+194
-0
lines changed

tests/ui/privacy/projections.rs

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
mod m {
2+
struct Priv;
3+
pub type Leak = Priv; //~ WARN: `Priv` is more private than the item `Leak`
4+
}
5+
6+
trait Trait {
7+
type A<T>;
8+
}
9+
10+
impl Trait for u8 {
11+
type A<T> = u8;
12+
}
13+
14+
fn check() -> <u8 as Trait>::A<m::Leak> {
15+
//~^ ERROR: `Priv` is private
16+
0
17+
}
18+
19+
trait Trait2 {
20+
type A<T>;
21+
}
22+
23+
impl Trait2 for u8 {
24+
type A<T> = m::Leak;
25+
//~^ ERROR: `Priv` is private
26+
//~| ERROR: private type `Priv` in public interface
27+
}
28+
29+
fn check2() -> <u8 as Trait2>::A<u32> {
30+
//~^ ERROR: `Priv` is private
31+
todo!()
32+
}
33+
34+
trait Trait3 {
35+
type A<T: Trait>;
36+
}
37+
38+
impl Trait3 for u8 {
39+
type A<T: Trait> = T::A<m::Leak>;
40+
//~^ ERROR: `Priv` is private
41+
//~| ERROR: private type `Priv` in public interface
42+
}
43+
44+
fn check3() -> <u8 as Trait3>::A<u8> {
45+
todo!()
46+
}
47+
48+
trait Trait4 {
49+
type A<T: Trait3>;
50+
}
51+
52+
impl Trait4 for u8 {
53+
type A<T: Trait3> = T::A<u8>;
54+
}
55+
56+
fn check4() -> <u8 as Trait4>::A<u8> {
57+
todo!()
58+
}
59+
60+
fn main() {}

tests/ui/privacy/projections.stderr

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
warning: type `Priv` is more private than the item `Leak`
2+
--> $DIR/projections.rs:3:5
3+
|
4+
LL | pub type Leak = Priv;
5+
| ^^^^^^^^^^^^^ type alias `Leak` is reachable at visibility `pub(crate)`
6+
|
7+
note: but type `Priv` is only usable at visibility `pub(self)`
8+
--> $DIR/projections.rs:2:5
9+
|
10+
LL | struct Priv;
11+
| ^^^^^^^^^^^
12+
= note: `#[warn(private_interfaces)]` on by default
13+
14+
error[E0446]: private type `Priv` in public interface
15+
--> $DIR/projections.rs:24:5
16+
|
17+
LL | struct Priv;
18+
| ----------- `Priv` declared as private
19+
...
20+
LL | type A<T> = m::Leak;
21+
| ^^^^^^^^^ can't leak private type
22+
23+
error[E0446]: private type `Priv` in public interface
24+
--> $DIR/projections.rs:39:5
25+
|
26+
LL | struct Priv;
27+
| ----------- `Priv` declared as private
28+
...
29+
LL | type A<T: Trait> = T::A<m::Leak>;
30+
| ^^^^^^^^^^^^^^^^ can't leak private type
31+
32+
error: type `Priv` is private
33+
--> $DIR/projections.rs:14:15
34+
|
35+
LL | fn check() -> <u8 as Trait>::A<m::Leak> {
36+
| ^^^^^^^^^^^^^^^^^^^^^^^^^ private type
37+
38+
error: type `Priv` is private
39+
--> $DIR/projections.rs:29:39
40+
|
41+
LL | fn check2() -> <u8 as Trait2>::A<u32> {
42+
| _______________________________________^
43+
LL | |
44+
LL | | todo!()
45+
LL | | }
46+
| |_^ private type
47+
48+
error: type `Priv` is private
49+
--> $DIR/projections.rs:24:17
50+
|
51+
LL | type A<T> = m::Leak;
52+
| ^^^^^^^ private type
53+
54+
error: type `Priv` is private
55+
--> $DIR/projections.rs:39:24
56+
|
57+
LL | type A<T: Trait> = T::A<m::Leak>;
58+
| ^^^^^^^^^^^^^ private type
59+
60+
error: aborting due to 6 previous errors; 1 warning emitted
61+
62+
For more information about this error, try `rustc --explain E0446`.

tests/ui/privacy/projections2.rs

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
mod m {
2+
use super::*;
3+
struct Priv;
4+
pub type Leak = Priv; //~ WARN: `Priv` is more private than the item `Leak`
5+
6+
trait Trait3 {
7+
type A<T: Trait>;
8+
}
9+
10+
impl Trait3 for u8 {
11+
type A<T: Trait> = T::A<Leak>;
12+
}
13+
14+
pub trait Trait4 {
15+
type A<T: Trait>;
16+
}
17+
18+
impl Trait4 for u8 {
19+
type A<T: Trait> = <u8 as Trait3>::A<T>;
20+
//~^ ERROR: private associated type `Trait3::A` in public interface
21+
//~| ERROR: private trait `Trait3` in public interface
22+
}
23+
}
24+
25+
pub trait Trait {
26+
type A<T>;
27+
}
28+
29+
impl Trait for u8 {
30+
type A<T> = u8;
31+
}
32+
use m::*;
33+
34+
fn check4() -> <u8 as Trait4>::A<u8> {
35+
todo!()
36+
}
37+
38+
fn main() {}

tests/ui/privacy/projections2.stderr

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
warning: type `Priv` is more private than the item `Leak`
2+
--> $DIR/projections2.rs:4:5
3+
|
4+
LL | pub type Leak = Priv;
5+
| ^^^^^^^^^^^^^ type alias `Leak` is reachable at visibility `pub(crate)`
6+
|
7+
note: but type `Priv` is only usable at visibility `pub(self)`
8+
--> $DIR/projections2.rs:3:5
9+
|
10+
LL | struct Priv;
11+
| ^^^^^^^^^^^
12+
= note: `#[warn(private_interfaces)]` on by default
13+
14+
error[E0446]: private associated type `Trait3::A` in public interface
15+
--> $DIR/projections2.rs:19:9
16+
|
17+
LL | type A<T: Trait>;
18+
| ---------------- `Trait3::A` declared as private
19+
...
20+
LL | type A<T: Trait> = <u8 as Trait3>::A<T>;
21+
| ^^^^^^^^^^^^^^^^ can't leak private associated type
22+
23+
error[E0446]: private trait `Trait3` in public interface
24+
--> $DIR/projections2.rs:19:9
25+
|
26+
LL | trait Trait3 {
27+
| ------------ `Trait3` declared as private
28+
...
29+
LL | type A<T: Trait> = <u8 as Trait3>::A<T>;
30+
| ^^^^^^^^^^^^^^^^ can't leak private trait
31+
32+
error: aborting due to 2 previous errors; 1 warning emitted
33+
34+
For more information about this error, try `rustc --explain E0446`.

0 commit comments

Comments
 (0)