]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pub/issue-33174-restricted-type-in-public-interface.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / pub / issue-33174-restricted-type-in-public-interface.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![allow(non_camel_case_types)]  // genus is always capitalized
12
13 pub(crate) struct Snail;
14 //~^ NOTE `Snail` declared as crate-visible
15
16 mod sea {
17     pub(super) struct Turtle;
18     //~^ NOTE `sea::Turtle` declared as restricted
19 }
20
21 struct Tortoise;
22 //~^ NOTE `Tortoise` declared as private
23
24 pub struct Shell<T> {
25     pub(crate) creature: T,
26 }
27
28 pub type Helix_pomatia = Shell<Snail>;
29 //~^ ERROR crate-visible type `Snail` in public interface
30 //~| NOTE can't leak crate-visible type
31 pub type Dermochelys_coriacea = Shell<sea::Turtle>;
32 //~^ ERROR restricted type `sea::Turtle` in public interface
33 //~| NOTE can't leak restricted type
34 pub type Testudo_graeca = Shell<Tortoise>;
35 //~^ ERROR private type `Tortoise` in public interface
36 //~| NOTE can't leak private type
37
38 fn main() {}