]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/issue-38293.rs
New upstream version 1.20.0+dfsg1
[rustc.git] / src / test / compile-fail / issue-38293.rs
CommitLineData
9cc50fc6 1// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
32a655c1
SL
11// Test that `fn foo::bar::{self}` only imports `bar` in the type namespace.
12
13#![allow(unused)]
223e47cc 14
32a655c1
SL
15mod foo {
16 pub fn f() { }
17}
18use foo::f::{self};
19//~^ ERROR `self` no longer imports values
20//~| WARN hard error
5bcae85e 21
32a655c1
SL
22mod bar {
23 pub fn baz() {}
24 pub mod baz {}
9cc50fc6 25}
32a655c1
SL
26use bar::baz::{self};
27//~^ ERROR `self` no longer imports values
28//~| WARN hard error
223e47cc 29
9cc50fc6 30fn main() {
32a655c1 31 baz();
9cc50fc6 32}