2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
|
2013-12-16 17:04:02 -08:00
|
|
|
// aux-build:issue-8259.rs
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-27 10:22:44 -07:00
|
|
|
extern crate issue_8259 as other;
|
2014-11-25 10:00:46 -08:00
|
|
|
static a: other::Foo<'static> = other::Foo::A;
|
2013-12-16 17:04:02 -08:00
|
|
|
|
2014-01-03 15:30:54 -08:00
|
|
|
pub fn main() {}
|