]> git.lizzy.rs Git - rust.git/blob - src/test/ui/editions/auxiliary/edition-imports-2018.rs
Rollup merge of #103065 - aDotInTheVoid:rdj-arg-pattern, r=GuillaumeGomez
[rust.git] / src / test / ui / editions / auxiliary / edition-imports-2018.rs
1 // edition:2018
2
3 #[macro_export]
4 macro_rules! gen_imports { () => {
5     use import::Path;
6     use std::collections::LinkedList;
7
8     fn check_absolute() {
9         ::absolute::Path;
10         ::std::collections::LinkedList::<u8>::new();
11     }
12 }}
13
14 #[macro_export]
15 macro_rules! gen_glob { () => {
16     use *;
17 }}