2015-09-09 11:02:52 +02:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
|
|
|
register_long_diagnostics! {
|
|
|
|
|
|
|
|
E0445: r##"
|
2015-09-09 11:15:33 +02:00
|
|
|
A private trait was used on a public type parameter bound. Erroneous code
|
|
|
|
examples:
|
2015-09-09 11:02:52 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
trait Foo {
|
|
|
|
fn dummy(&self) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Bar : Foo {} // error: private trait in exported type parameter bound
|
|
|
|
```
|
|
|
|
|
2015-09-09 11:15:33 +02:00
|
|
|
To solve this error, please ensure that the trait is also public and accessible
|
|
|
|
at the same level of the public functions or types which are bound on it.
|
|
|
|
Example:
|
2015-09-09 11:02:52 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
pub trait Foo { // we set the Foo trait public
|
|
|
|
fn dummy(&self) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Bar : Foo {} // ok!
|
|
|
|
```
|
|
|
|
"##,
|
|
|
|
|
2015-09-09 11:08:35 +02:00
|
|
|
E0446: r##"
|
|
|
|
A private type was used in an exported type signature. Erroneous code example:
|
|
|
|
|
|
|
|
```
|
|
|
|
mod Foo {
|
|
|
|
struct Bar(u32);
|
|
|
|
|
|
|
|
pub fn bar() -> Bar { // error: private type in exported type signature
|
|
|
|
Bar(0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2015-09-09 11:15:33 +02:00
|
|
|
To solve this error, please ensure that the type is also public and accessible
|
|
|
|
at the same level of the public functions or types which use it. Example:
|
2015-09-09 11:08:35 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
mod Foo {
|
|
|
|
pub struct Bar(u32); // we set the Bar type public
|
|
|
|
|
|
|
|
pub fn bar() -> Bar { // ok!
|
|
|
|
Bar(0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
"##,
|
|
|
|
|
2015-09-09 11:15:33 +02:00
|
|
|
E0447: r##"
|
|
|
|
The `pub` keyword was used inside a function. Erroneous code example:
|
|
|
|
|
|
|
|
```
|
|
|
|
fn foo() {
|
|
|
|
pub struct Bar; // error: visibility has no effect inside functions
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Since we cannot access inside function's elements, the visibility of its
|
|
|
|
elements does not impact outer code. So using the `pub` keyword in this context
|
|
|
|
is invalid.
|
|
|
|
"##,
|
|
|
|
|
2015-09-09 11:47:00 +02:00
|
|
|
E0448: r##"
|
|
|
|
The `pub` keyword was used inside a public enum. Erroneous code example:
|
|
|
|
|
|
|
|
```
|
|
|
|
pub enum Foo {
|
|
|
|
pub Bar, // error: unnecessary `pub` visibility
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Since the enum is already public, adding `pub` on one its elements is
|
|
|
|
unnecessary. Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
enum Foo {
|
|
|
|
pub Bar, // ok!
|
|
|
|
}
|
|
|
|
|
|
|
|
// or:
|
|
|
|
|
|
|
|
pub enum Foo {
|
|
|
|
Bar, // ok!
|
|
|
|
}
|
|
|
|
```
|
|
|
|
"##,
|
|
|
|
|
2015-09-09 11:58:27 +02:00
|
|
|
E0449: r##"
|
|
|
|
A visibility qualifier was used when it was unnecessary. Erroneous code
|
|
|
|
examples:
|
|
|
|
|
|
|
|
```
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
fn foo();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub impl Bar {} // error: unnecessary visibility qualifier
|
|
|
|
|
|
|
|
pub impl Foo for Bar { // error: unnecessary visibility qualifier
|
|
|
|
pub fn foo() {} // error: unnecessary visibility qualifier
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
To fix this error, please remove the visibility qualifier when it is not
|
|
|
|
required.
|
|
|
|
"##,
|
|
|
|
|
2015-09-09 11:02:52 +02:00
|
|
|
}
|