parent
3552595a3b
commit
320f18345b
@ -65,6 +65,10 @@ fn test() {
|
||||
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 @@ fn test() {
|
||||
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…
Reference in New Issue
Block a user