blob: 78e335b3db1cbaf08b9314e3f32f25e979f87d92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// run-rustfix
mod a {
pub struct A(pub String);
}
mod b {
use crate::a::A;
pub fn x() {
A("".into()); //~ ERROR cannot initialize a tuple struct which contains private fields
}
}
fn main() {
a::A("a".into()); //~ ERROR tuple struct constructor `A` is private
b::x();
}
|