diff options
Diffstat (limited to 'tests/ui/rust-2018/edition-lint-paths-2018.rs')
| -rw-r--r-- | tests/ui/rust-2018/edition-lint-paths-2018.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/rust-2018/edition-lint-paths-2018.rs b/tests/ui/rust-2018/edition-lint-paths-2018.rs new file mode 100644 index 00000000000..2005d8f4d79 --- /dev/null +++ b/tests/ui/rust-2018/edition-lint-paths-2018.rs @@ -0,0 +1,10 @@ +// 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() {} |
