Sign in
◑
Theme
rust
/
rust
/
cdfa29797d09d9622fd32cc85c65ea9309ea46df
/
.
/
tests
/
ui
/
type-alias-impl-trait
/
privacy.rs
blob: 4fbb9c7313f804b6e2b2bab23bbf1d03816364d0 [
file
]
//@ check-pass
#![
feature
(
type_alias_impl_trait
)]
type
Foo
=
(
impl
Sized
,
u8
);
#[
define_opaque
(
Foo
)]
pub
fn
foo
()
->
Foo
{
//~^ WARNING type alias `Foo` is more private than the item `foo`
(
42
,
42
)
}
fn
main
()
{}