rust/tests/ui/privacy/privacy-ns2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.4 KiB
Rust
Raw Normal View History

// 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 {
2015-04-18 13:12:20 +08:00
pub trait Bar {
}
pub struct Baz;
fn Bar() { }
}
fn test_single1() {
2016-07-26 12:16:48 +08:00
use foo1::Bar;
Bar(); //~ ERROR expected function, tuple struct or tuple variant, found trait `Bar`
}
fn test_list1() {
2016-07-26 12:16:48 +08:00
use foo1::{Bar,Baz};
Bar(); //~ ERROR expected function, tuple struct or tuple variant, found trait `Bar`
}
// private type, public value
pub mod foo2 {
2015-04-18 13:12:20 +08:00
trait Bar {
}
pub struct Baz;
pub fn Bar() { }
}
fn test_single2() {
2016-07-26 12:16:48 +08:00
use foo2::Bar;
let _x : Box<Bar>; //~ ERROR constant provided when a type was expected
2019-10-20 01:13:56 +08:00
let _x : Bar(); //~ ERROR expected type, found function `Bar`
}
fn test_list2() {
2016-07-26 12:16:48 +08:00
use foo2::{Bar,Baz};
let _x: Box<Bar>; //~ ERROR constant provided when a type was expected
}
// neither public
pub mod foo3 {
2015-04-18 13:12:20 +08:00
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() {
}