// Copyright 2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // Private types and traits are not allowed in public interfaces. // This test also ensures that the checks are performed even inside private modules. #![feature(associated_consts)] #![feature(associated_type_defaults)] #![allow(dead_code)] #![allow(unused_variables)] #![allow(improper_ctypes)] mod types { struct Priv; pub struct Pub; pub trait PubTr { type Alias; } pub type Alias = Priv; //~ ERROR private type in public interface //~^ WARNING hard error pub enum E { V1(Priv), //~ ERROR private type in public interface //~^ WARNING hard error V2 { field: Priv }, //~ ERROR private type in public interface //~^ WARNING hard error } pub trait Tr { const C: Priv = Priv; //~ ERROR private type in public interface //~^ WARNING hard error type Alias = Priv; //~ ERROR private type in public interface //~^ WARNING hard error fn f1(arg: Priv) {} //~ ERROR private type in public interface //~^ WARNING hard error fn f2() -> Priv { panic!() } //~ ERROR private type in public interface //~^ WARNING hard error } extern { pub static ES: Priv; //~ ERROR private type in public interface //~^ WARNING hard error pub fn ef1(arg: Priv); //~ ERROR private type in public interface //~^ WARNING hard error pub fn ef2() -> Priv; //~ ERROR private type in public interface //~^ WARNING hard error } impl PubTr for Pub { type Alias = Priv; //~ ERROR private type in public interface //~^ WARNING hard error } } mod traits { trait PrivTr {} pub struct Pub(T); pub trait PubTr {} pub type Alias = T; //~ ERROR private trait in public interface //~^ WARN trait bounds are not (yet) enforced in type definitions //~| WARNING hard error pub trait Tr1: PrivTr {} //~ ERROR private trait in public interface //~^ WARNING hard error pub trait Tr2 {} //~ ERROR private trait in public interface //~^ WARNING hard error pub trait Tr3 { type Alias: PrivTr; //~ ERROR private trait in public interface //~^ WARNING hard error fn f(arg: T) {} //~ ERROR private trait in public interface //~^ WARNING hard error } impl Pub {} //~ ERROR private trait in public interface //~^ WARNING hard error impl PubTr for Pub {} //~ ERROR private trait in public interface //~^ WARNING hard error } mod traits_where { trait PrivTr {} pub struct Pub(T); pub trait PubTr {} pub type Alias where T: PrivTr = T; //~ ERROR private trait in public interface //~^ WARNING hard error pub trait Tr2 where T: PrivTr {} //~ ERROR private trait in public interface //~^ WARNING hard error pub trait Tr3 { fn f(arg: T) where T: PrivTr {} //~ ERROR private trait in public interface //~^ WARNING hard error } impl Pub where T: PrivTr {} //~ ERROR private trait in public interface //~^ WARNING hard error impl PubTr for Pub where T: PrivTr {} //~ ERROR private trait in public interface //~^ WARNING hard error } mod generics { struct Priv(T); pub struct Pub(T); trait PrivTr {} pub trait PubTr {} pub trait Tr1: PrivTr {} //~ ERROR private trait in public interface //~^ WARNING hard error pub trait Tr2: PubTr {} //~ ERROR private type in public interface //~^ WARNING hard error pub trait Tr3: PubTr<[Priv; 1]> {} //~ ERROR private type in public interface //~^ WARNING hard error pub trait Tr4: PubTr> {} //~ ERROR private type in public interface //~^ WARNING hard error } mod impls { struct Priv; pub struct Pub; trait PrivTr { type Alias; } pub trait PubTr { type Alias; } impl Priv { pub fn f(arg: Priv) {} // OK } impl PrivTr for Priv { type Alias = Priv; // OK } impl PubTr for Priv { type Alias = Priv; // OK } impl PrivTr for Pub { type Alias = Priv; // OK } impl PubTr for Pub { type Alias = Priv; //~ ERROR private type in public interface //~^ WARNING hard error } } mod impls_generics { struct Priv(T); pub struct Pub(T); trait PrivTr { type Alias; } pub trait PubTr { type Alias; } impl Priv { pub fn f(arg: Priv) {} // OK } impl Pub { pub fn f(arg: Priv) {} // OK } impl PrivTr for Priv { type Alias = Priv; // OK } impl PubTr for Priv { type Alias = Priv; // OK } impl PubTr for Priv { type Alias = Priv; // OK } impl PubTr for [Priv; 1] { type Alias = Priv; // OK } impl PubTr for Pub { type Alias = Priv; // OK } impl PrivTr for Pub { type Alias = Priv; // OK } impl PubTr for Pub { type Alias = Priv; // OK } } mod aliases_pub { struct Priv; mod m { pub struct Pub1; pub struct Pub2; pub struct Pub3; pub trait PubTr { type Check = u8; } } use self::m::Pub1 as PrivUseAlias; use self::m::PubTr as PrivUseAliasTr; type PrivAlias = m::Pub2; trait PrivTr { type AssocAlias; } impl PrivTr for Priv { type AssocAlias = m::Pub3; } pub fn f1(arg: PrivUseAlias) {} // OK pub fn f2(arg: PrivAlias) {} // OK pub trait Tr1: PrivUseAliasTr {} // OK pub trait Tr2: PrivUseAliasTr {} // OK impl PrivAlias { pub fn f(arg: Priv) {} //~ ERROR private type in public interface //~^ WARNING hard error } // This doesn't even parse // impl ::AssocAlias { // pub fn f(arg: Priv) {} // ERROR private type in public interface // } impl PrivUseAliasTr for PrivUseAlias { type Check = Priv; //~ ERROR private type in public interface //~^ WARNING hard error } impl PrivUseAliasTr for PrivAlias { type Check = Priv; //~ ERROR private type in public interface //~^ WARNING hard error } impl PrivUseAliasTr for ::AssocAlias { type Check = Priv; //~ ERROR private type in public interface //~^ WARNING hard error } } mod aliases_priv { struct Priv; struct Priv1; struct Priv2; struct Priv3; trait PrivTr1 { type Check = u8; } use self::Priv1 as PrivUseAlias; use self::PrivTr1 as PrivUseAliasTr; type PrivAlias = Priv2; trait PrivTr { type AssocAlias; } impl PrivTr for Priv { type AssocAlias = Priv3; } pub trait Tr1: PrivUseAliasTr {} //~ ERROR private trait in public interface //~^ WARNING hard error pub trait Tr2: PrivUseAliasTr {} //~ ERROR private trait in public interface //~^ ERROR private type in public interface //~| WARNING hard error //~| WARNING hard error impl PrivUseAlias { pub fn f(arg: Priv) {} // OK } impl PrivAlias { pub fn f(arg: Priv) {} // OK } // This doesn't even parse // impl ::AssocAlias { // pub fn f(arg: Priv) {} // OK // } impl PrivUseAliasTr for PrivUseAlias { type Check = Priv; // OK } impl PrivUseAliasTr for PrivAlias { type Check = Priv; // OK } impl PrivUseAliasTr for ::AssocAlias { type Check = Priv; // OK } } mod aliases_params { struct Priv; type PrivAliasGeneric = T; type Result = ::std::result::Result; pub fn f1(arg: PrivAliasGeneric) {} // OK, not an error } fn main() {}