blob: 47035ef3af5a2a537e42dd4b8e0ed4d64b310bbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// 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.
#![allow(dead_code)]
#![allow(unused_imports)]
// public type, private value
pub mod foo1 {
pub trait Bar {
}
pub struct Baz;
fn Bar() { }
}
fn test_single1() {
use foo1::Bar;
Bar(); //~ ERROR expected function, tuple struct or tuple variant, found trait `Bar`
}
fn test_list1() {
use foo1::{Bar,Baz};
Bar(); //~ ERROR expected function, tuple struct or tuple variant, found trait `Bar`
}
// private type, public value
pub mod foo2 {
trait Bar {
}
pub struct Baz;
pub fn Bar() { }
}
fn test_single2() {
use foo2::Bar;
let _x : Box<Bar>; //~ ERROR constant provided when a type was expected
let _x : Bar(); //~ ERROR expected type, found function `Bar`
}
fn test_list2() {
use foo2::{Bar,Baz};
let _x: Box<Bar>; //~ ERROR constant provided when a type was expected
}
// neither public
pub mod foo3 {
trait Bar {
}
pub struct Baz;
fn Bar() { }
}
fn test_unused3() {
use foo3::Bar; //~ ERROR `Bar` is private
}
fn test_single3() {
use foo3::Bar; //~ ERROR `Bar` is private
Bar();
let _x: Box<Bar>;
}
fn test_list3() {
use foo3::{Bar,Baz}; //~ ERROR `Bar` is private
Bar();
let _x: Box<Bar>;
}
fn main() {
}
|