Add test descriptions.

This commit is contained in:
Victor Berger 2015-08-06 12:48:42 +02:00
parent 8e24091f98
commit 3d041bd46d
2 changed files with 11 additions and 2 deletions

View File

@ -8,6 +8,12 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// Previously, this would have failed to resolve due to the circular
// block between `use say` and `pub use hello::*`.
//
// Now, as `use say` is not `pub`, the glob import can resolve
// without any problem and this resolves fine.
pub use hello::*;
pub mod say {

View File

@ -8,6 +8,9 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// This should resolve fine even with the circular imports as
// they are not `pub`.
pub mod a {
use b::*;
}