1
Fork 0

Just tidying up

This commit is contained in:
John Renner 2018-07-30 19:55:23 -07:00
parent f76049cd6a
commit caab47d3e9

View file

@ -22,12 +22,17 @@ mod a {
mod b {
#[test]
fn foo() {}
fn foo() {
local_name(); // ensure the local name still works
}
#[test]
fn local_name() {}
}
use a::*;
use b::*;
fn conflict() {
pub fn conflict() {
let _: bool = foo();
}
}