]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-8259.rs
Enable full revision in const generics ui tests
[rust.git] / src / test / ui / issues / issue-8259.rs
1 // run-pass
2 #![allow(dead_code)]
3 #![allow(non_upper_case_globals)]
4
5 // aux-build:issue-8259.rs
6
7 // pretty-expanded FIXME #23616
8
9 extern crate issue_8259 as other;
10 static a: other::Foo<'static> = other::Foo::A;
11
12 pub fn main() {}