mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
12 lines
242 B
Rust
12 lines
242 B
Rust
// 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() {}
|