Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
cross-crate
/
static-with-cross-crate-regions-8259.rs
blob: 347cfa2aee13046617bbb40e50d77720dd54ab35 [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/8259
//@ run-pass
#![
allow
(
dead_code
)]
#![
allow
(
non_upper_case_globals
)]
//@ aux-build:aux-8259.rs
extern
crate aux_8259
as
other
;
static
a
:
other
::
Foo
<
'
static
>
=
other
::
Foo
::
A
;
pub
fn
main
()
{}