mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-21 04:03:11 +00:00
tests: add more merge_import tests for #3808
This commit is contained in:
parent
7c9c0d1a39
commit
634e2441c4
@ -29,3 +29,6 @@ use e::{self as foo};
|
||||
use f::{self, b};
|
||||
use g::a;
|
||||
use g::{self, b};
|
||||
use h::{a};
|
||||
use i::a::{self};
|
||||
use j::{a::{self}};
|
||||
|
@ -20,3 +20,6 @@ use d::{self};
|
||||
use e::{self as foo};
|
||||
use f::{self, b};
|
||||
use g::{self, a, b};
|
||||
use h::a;
|
||||
use i::a::{self};
|
||||
use j::a::{self};
|
||||
|
Loading…
Reference in New Issue
Block a user