2014-02-11 19:19:18 +00:00
|
|
|
// Check we do the correct privacy checks when we import a name and there is an
|
|
|
|
// item with that name in both the value and type namespaces.
|
|
|
|
|
2014-03-22 01:05:05 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_imports)]
|
2014-02-11 19:19:18 +00:00
|
|
|
|
2014-05-06 01:56:44 +00:00
|
|
|
|
2014-02-11 19:19:18 +00:00
|
|
|
// public type, private value
|
|
|
|
pub mod foo1 {
|
|
|
|
pub trait Bar {
|
|
|
|
}
|
|
|
|
pub struct Baz;
|
|
|
|
|
|
|
|
fn Bar() { }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_glob1() {
|
|
|
|
use foo1::*;
|
|
|
|
|
2019-10-15 00:20:50 +00:00
|
|
|
Bar(); //~ ERROR expected function, tuple struct or tuple variant, found trait `Bar`
|
2014-02-11 19:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// private type, public value
|
|
|
|
pub mod foo2 {
|
|
|
|
trait Bar {
|
|
|
|
}
|
|
|
|
pub struct Baz;
|
|
|
|
|
|
|
|
pub fn Bar() { }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_glob2() {
|
|
|
|
use foo2::*;
|
|
|
|
|
2020-11-13 19:23:37 +00:00
|
|
|
let _x: Box<Bar>;
|
|
|
|
//~^ ERROR constant provided when a type was expected
|
2014-02-11 19:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// neither public
|
|
|
|
pub mod foo3 {
|
|
|
|
trait Bar {
|
|
|
|
}
|
|
|
|
pub struct Baz;
|
|
|
|
|
|
|
|
fn Bar() { }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_glob3() {
|
|
|
|
use foo3::*;
|
|
|
|
|
2019-10-15 00:20:50 +00:00
|
|
|
Bar(); //~ ERROR cannot find function, tuple struct or tuple variant `Bar` in this scope
|
2017-01-11 22:18:08 +00:00
|
|
|
let _x: Box<Bar>; //~ ERROR cannot find type `Bar` in this scope
|
2014-02-11 19:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|