tests: add more merge_import tests for #3808

This commit is contained in:
Caleb Cartwright 2019-09-26 20:11:11 -05:00
parent 7c9c0d1a39
commit 634e2441c4
2 changed files with 6 additions and 0 deletions

View file

@ -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}};

View file

@ -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};