Sign in
◑
Theme
rust
/
rust
/
7bb6510fc1899b008837a376a7fdf31b341cc1bb
/
.
/
tests
/
ui
/
type-alias-impl-trait
/
static-const-types.rs
blob: dad515aaa7bd99b54a729a666b6a632d5f80c59d [
file
]
#![
feature
(
type_alias_impl_trait
)]
#![
allow
(
dead_code
)]
//@ check-pass
use
std
::
fmt
::
Debug
;
type
Foo
=
impl
Debug
;
static
FOO1
:
Foo
=
22
_u32
;
const
FOO2
:
Foo
=
22
_u32
;
fn
main
()
{}