rust/src/test/ui/issues/issue-6919.rs
Mark Rousskov a0e48b6d25 Warn on no_start, crate_id attribute use
These attributes are now deprecated; they don't have any use anymore.
2019-09-14 19:43:39 -04:00

12 lines
170 B
Rust

// run-pass
#![allow(unused_attributes)]
// aux-build:iss.rs
// pretty-expanded FIXME #23616
extern crate issue6919_3;
pub fn main() {
let _ = issue6919_3::D.k;
}