
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
11 lines
198 B
Rust
11 lines
198 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
//@ aux-build:issue-8259.rs
|
|
|
|
|
|
extern crate issue_8259 as other;
|
|
static a: other::Foo<'static> = other::Foo::A;
|
|
|
|
pub fn main() {}
|