mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
257 B
Rust
11 lines
257 B
Rust
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
//@ edition:2018
|
|
//@ compile-flags:--extern edition_lint_paths
|
|
//@ aux-build:edition-lint-paths.rs
|
|
|
|
#![deny(absolute_paths_not_starting_with_crate)]
|
|
|
|
edition_lint_paths::macro_2015!(); // OK
|
|
|
|
fn main() {}
|