parent
3552595a3b
commit
320f18345b
2 changed files with 8 additions and 0 deletions
|
|
@ -65,6 +65,10 @@ use ::foo::{Bar, Baz};
|
|||
use ::{Foo};
|
||||
use ::{Bar, Baz};
|
||||
|
||||
// Root globs
|
||||
use *;
|
||||
use ::*;
|
||||
|
||||
// spaces used to cause glob imports to disappear (#1356)
|
||||
use super:: * ;
|
||||
use foo::issue_1356:: * ;
|
||||
|
|
|
|||
|
|
@ -60,6 +60,10 @@ use foo::{Bar, Baz};
|
|||
use Foo;
|
||||
use {Bar, Baz};
|
||||
|
||||
// Root globs
|
||||
use ::*;
|
||||
use ::*;
|
||||
|
||||
// spaces used to cause glob imports to disappear (#1356)
|
||||
use super::*;
|
||||
use foo::issue_1356::*;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue